react_on_rails 11.1.3 → 11.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +0 -1
- data/CHANGELOG.md +8 -1
- data/README.md +12 -6
- data/docs/basics/installation-into-an-existing-rails-app.md +1 -1
- data/docs/tutorial.md +3 -3
- data/lib/react_on_rails/locales_to_js.rb +1 -1
- data/lib/react_on_rails/version.rb +1 -1
- data/package.json +13 -14
- data/rakelib/release.rake +1 -0
- data/yarn.lock +1663 -699
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cbdd2d6c833de21cdfb879ee8ed9f3336601af63a6259bb63f53e9dcd1c847b
|
4
|
+
data.tar.gz: 63236a547e46ecc99fe227c2aa37a0a04cd8435e9c197f748c88a8696e18d6b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3909ffa65825b8dbfcb4b8a1718ff6a0ae6c70374dcac50a64e1ee638f3caa67e14416aedd3f9e2f7c6f2d32bec65aacc66a01d127115ad251c4c42af25e791e
|
7
|
+
data.tar.gz: 3a7111de3e10f62ea681bb9519b174caed6c331e0fddf950ad2e83f9e47c543387259930781f7c4f3f274d6663892d9fb170519a133ffdc21fdb69f0ebba0628
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,13 @@ Changes since last non-beta release.
|
|
10
10
|
|
11
11
|
*Please add entries here for your pull requests that are not yet released.*
|
12
12
|
|
13
|
+
### [11.1.4] - 2018-09-12
|
14
|
+
|
15
|
+
#### Fixed
|
16
|
+
- Ignore Arrays in Rails i18n yml files. [PR 1129](https://github.com/shakacode/react_on_rails/pull/1129) by [vcarel](https://github.com/vcarel).
|
17
|
+
- Fix to apply transform-runtime. And work with Babel 6 and 7. (Include revert of [PR 1136](https://github.com/shakacode/react_on_rails/pull/1136)) [PR 1140](https://github.com/shakacode/react_on_rails/pull/1140) by [Ryunosuke Sato](https://github.com/tricknotes).
|
18
|
+
- Upgrade Babel version to 7 [PR 1141](https://github.com/shakacode/react_on_rails/pull/1141) by [Ryunosuke Sato](https://github.com/tricknotes).
|
19
|
+
|
13
20
|
### [11.1.3] - 2018-08-26
|
14
21
|
|
15
22
|
#### Fixed
|
@@ -102,7 +109,7 @@ Changes since last non-beta release.
|
|
102
109
|
|
103
110
|
#### Enhancements: Better Error Messages, Support for React on Rails Pro
|
104
111
|
- Tracing (debugging) options are simplified with a single `config.trace` setting that defaults to true for development and false otherwise.
|
105
|
-
- Calls to setTimeout, setInterval, clearTimeout will now always log some message if config.trace is true. Your JavaScript code should not be calling setTimout when server rendering.
|
112
|
+
- Calls to setTimeout, setInterval, clearTimeout will now always log some message if config.trace is true. Your JavaScript code should not be calling setTimout when server rendering.
|
106
113
|
- Errors raised are of type ReactOnRailsError, so you can see they came from React on Rails for debugging.
|
107
114
|
- Removed ReactOnRails::Utils.server_bundle_file_name and ReactOnRails::Utils.bundle_file_name.
|
108
115
|
- No longer logging the `railsContext` when server logging.
|
data/README.md
CHANGED
@@ -29,19 +29,25 @@ See the [react-webpack-rails-tutorial](https://github.com/shakacode/react-webpac
|
|
29
29
|
|
30
30
|
## React on Rails Pro and ShakaCode Pro Support
|
31
31
|
|
32
|
-
|
32
|
+
React on Rails Pro provides Node server rendering and other performance enhancements for React on Rails.
|
33
33
|
|
34
|
-
|
34
|
+
![2018-09-11_10-31-11](https://user-images.githubusercontent.com/1118459/45467845-5bcc7400-b6bd-11e8-91e1-e0cf806d4ea4.png)
|
35
35
|
|
36
|
-
|
36
|
+
* [HVMN’s 90% Reduction in Server Response Time from React on Rails Pro](https://medium.com/@railsonmaui/hvmns-90-reduction-in-server-response-time-from-react-on-rails-pro-eb08226687db)
|
37
|
+
* [Egghead React on Rails Pro Deployment Highlights](https://github.com/shakacode/react_on_rails/wiki/Egghead-React-on-Rails-Pro-Deployment-Highlights)
|
38
|
+
|
39
|
+
For more information, see the [React on Rails Pro Docs](https://github.com/shakacode/react_on_rails/wiki).
|
40
|
+
|
41
|
+
The [ShakaCode Pro Support Plan](http://www.shakacode.com/work/shakacode-pro-support.pdf) can help you with:
|
37
42
|
|
38
43
|
* Optimizing your webpack setup to Webpack v4 for React on Rails including code splitting with react-router v4, webpack v4, and react-loadable.
|
39
44
|
* Upgrading your app to use the current Webpack setup that skips the Sprockets asset pipeline.
|
40
45
|
* Better performance client and server side.
|
41
46
|
* Efficiently migrating from [Angular to React](https://www.shakacode.com/services/angular-to-react/).
|
42
|
-
* Best practices based on four years of React on Rails experience.
|
47
|
+
* Best practices based on over four years of React on Rails experience.
|
48
|
+
* Using [Reason](https://reasonml.github.io/) with (or without) React on Rails.
|
43
49
|
|
44
|
-
ShakaCode can also help you with your
|
50
|
+
ShakaCode can also help you with your custom software development needs. We specialize in marketplace and e-commerce applications that utilize both Rails and React. Because we own [HawaiiChee.com](https://www.hawaiichee.com), we can leverage that code for your app!
|
45
51
|
|
46
52
|
The article [Why Hire ShakaCode?](https://blog.shakacode.com/can-shakacode-help-you-4a5b1e5a8a63#.jex6tg9w9) provides additional details about our projects.
|
47
53
|
|
@@ -92,7 +98,7 @@ Note, the best way to understand how to use ReactOnRails is to study a few simpl
|
|
92
98
|
2. Add the `react_on_rails` gem to Gemfile:
|
93
99
|
|
94
100
|
```ruby
|
95
|
-
gem 'react_on_rails', '11.
|
101
|
+
gem 'react_on_rails', '11.1.4' # Use the exact gem version to match npm version
|
96
102
|
```
|
97
103
|
|
98
104
|
3. Install the `react_on_rails` gem:
|
@@ -7,7 +7,7 @@
|
|
7
7
|
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.
|
8
8
|
|
9
9
|
```ruby
|
10
|
-
gem "react_on_rails", "11.
|
10
|
+
gem "react_on_rails", "11.1.4" # Update to the current version
|
11
11
|
gem "webpacker", "~> 3" # Newer versions might be supported
|
12
12
|
```
|
13
13
|
|
data/docs/tutorial.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# React on Rails Basic Tutorial
|
2
2
|
|
3
|
-
This tutorial guides you through setting up a new or existing Rails app with **React on Rails**, demonstrating Rails + React + Redux + Server Rendering. It is updated to 11.1.
|
3
|
+
This tutorial guides you through setting up a new or existing Rails app with **React on Rails**, demonstrating Rails + React + Redux + Server Rendering. It is updated to 11.1.4.
|
4
4
|
|
5
5
|
After finishing this tutorial you will get an application that can do the following (live on Heroku):
|
6
6
|
|
@@ -27,7 +27,7 @@ nvm alias default node # make it default version
|
|
27
27
|
nvm list # check
|
28
28
|
|
29
29
|
brew install yarn # you can use other installer if desired
|
30
|
-
|
30
|
+
11\.\d+\.\d+
|
31
31
|
rvm install 2.5.0 # download and install latest stable Ruby (update to exact version)
|
32
32
|
rvm use 2.5.0 --default # use it and make it default
|
33
33
|
rvm list # check
|
@@ -59,7 +59,7 @@ bundle exec rails webpacker:install:react
|
|
59
59
|
Add the **React On Rails** gem to your Gemfile:
|
60
60
|
|
61
61
|
```
|
62
|
-
gem 'react_on_rails', '11.1.
|
62
|
+
gem 'react_on_rails', '11.1.4' # prefer exact gem version to match npm version
|
63
63
|
```
|
64
64
|
|
65
65
|
Note: Latest released React On Rails version is considered stable. Please use the latest version to ensure you get all the security patches and the best support.
|
@@ -107,7 +107,7 @@ module ReactOnRails
|
|
107
107
|
translations.each_with_object({}) do |(k, v), h|
|
108
108
|
if v.is_a? Hash
|
109
109
|
flatten(v).map { |hk, hv| h["#{k}.#{hk}".to_sym] = hv }
|
110
|
-
|
110
|
+
elsif !v.is_a? Array # Arrays are not supported by react-intl
|
111
111
|
h[k] = v.gsub("%{", "{")
|
112
112
|
end
|
113
113
|
end
|
data/package.json
CHANGED
@@ -1,23 +1,21 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-on-rails",
|
3
|
-
"version": "11.1.
|
3
|
+
"version": "11.1.4",
|
4
4
|
"description": "react-on-rails JavaScript for react_on_rails Ruby gem",
|
5
5
|
"main": "node_package/lib/ReactOnRails.js",
|
6
6
|
"directories": {
|
7
7
|
"doc": "docs"
|
8
8
|
},
|
9
9
|
"devDependencies": {
|
10
|
-
"babel
|
11
|
-
"babel
|
12
|
-
"babel-
|
13
|
-
"babel
|
14
|
-
"babel-
|
15
|
-
"babel
|
16
|
-
"babel
|
17
|
-
"babel-
|
18
|
-
"babel-
|
19
|
-
"babel-tape-runner": "^2.0.1",
|
20
|
-
"babel-types": "^6.25.0",
|
10
|
+
"@babel/cli": "^7.0.0",
|
11
|
+
"@babel/core": "^7.0.0",
|
12
|
+
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
|
13
|
+
"@babel/plugin-transform-runtime": "^7.0.0",
|
14
|
+
"@babel/preset-env": "^7.0.0",
|
15
|
+
"@babel/preset-react": "^7.0.0",
|
16
|
+
"@babel/types": "^7.0.0",
|
17
|
+
"babel-loader": "^8.0.2",
|
18
|
+
"babel-tape-runner": "^3.0.0",
|
21
19
|
"babelify": "^7.3.0",
|
22
20
|
"blue-tape": "^1.0.0",
|
23
21
|
"create-react-class": "^15.6.0",
|
@@ -40,7 +38,6 @@
|
|
40
38
|
"webpack-manifest-plugin": "^1.2.1"
|
41
39
|
},
|
42
40
|
"peerDependencies": {
|
43
|
-
"babel-runtime": ">= 6",
|
44
41
|
"js-yaml": ">= 3.0.0",
|
45
42
|
"react": ">= 0.14",
|
46
43
|
"react-dom": ">= 0.14"
|
@@ -87,5 +84,7 @@
|
|
87
84
|
"url": "https://github.com/shakacode/react_on_rails/issues"
|
88
85
|
},
|
89
86
|
"homepage": "https://github.com/shakacode/react_on_rails#readme",
|
90
|
-
"dependencies": {
|
87
|
+
"dependencies": {
|
88
|
+
"@babel/runtime-corejs2": "^7.0.0"
|
89
|
+
}
|
91
90
|
}
|
data/rakelib/release.rake
CHANGED
@@ -70,6 +70,7 @@ task :release, %i[gem_version dry_run tools_install] do |_t, args|
|
|
70
70
|
sh_in_dir(gem_root, "gem release")
|
71
71
|
|
72
72
|
# Update master with new npm version
|
73
|
+
sleep 5 # short pause to make sure npmjs has time to update
|
73
74
|
sh_in_dir(File.join(gem_root, "spec", "dummy", "client"), "yarn add react-on-rails@#{npm_version} --exact")
|
74
75
|
sh_in_dir(gem_root, "git commit -am 'Updated spec/dummy/client/package.json latest version'")
|
75
76
|
sh_in_dir(gem_root, "git push")
|
data/yarn.lock
CHANGED
@@ -2,6 +2,636 @@
|
|
2
2
|
# yarn lockfile v1
|
3
3
|
|
4
4
|
|
5
|
+
"@babel/cli@^7.0.0":
|
6
|
+
version "7.0.0"
|
7
|
+
resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.0.0.tgz#108b395fd43fff6681d36fb41274df4d8ffeb12e"
|
8
|
+
dependencies:
|
9
|
+
commander "^2.8.1"
|
10
|
+
convert-source-map "^1.1.0"
|
11
|
+
fs-readdir-recursive "^1.1.0"
|
12
|
+
glob "^7.0.0"
|
13
|
+
lodash "^4.17.10"
|
14
|
+
mkdirp "^0.5.1"
|
15
|
+
output-file-sync "^2.0.0"
|
16
|
+
slash "^2.0.0"
|
17
|
+
source-map "^0.5.0"
|
18
|
+
optionalDependencies:
|
19
|
+
chokidar "^2.0.3"
|
20
|
+
|
21
|
+
"@babel/code-frame@^7.0.0":
|
22
|
+
version "7.0.0"
|
23
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8"
|
24
|
+
dependencies:
|
25
|
+
"@babel/highlight" "^7.0.0"
|
26
|
+
|
27
|
+
"@babel/core@^7.0.0":
|
28
|
+
version "7.0.0"
|
29
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.0.0.tgz#0cb0c0fd2e78a0a2bec97698f549ae9ce0b99515"
|
30
|
+
dependencies:
|
31
|
+
"@babel/code-frame" "^7.0.0"
|
32
|
+
"@babel/generator" "^7.0.0"
|
33
|
+
"@babel/helpers" "^7.0.0"
|
34
|
+
"@babel/parser" "^7.0.0"
|
35
|
+
"@babel/template" "^7.0.0"
|
36
|
+
"@babel/traverse" "^7.0.0"
|
37
|
+
"@babel/types" "^7.0.0"
|
38
|
+
convert-source-map "^1.1.0"
|
39
|
+
debug "^3.1.0"
|
40
|
+
json5 "^0.5.0"
|
41
|
+
lodash "^4.17.10"
|
42
|
+
resolve "^1.3.2"
|
43
|
+
semver "^5.4.1"
|
44
|
+
source-map "^0.5.0"
|
45
|
+
|
46
|
+
"@babel/generator@^7.0.0":
|
47
|
+
version "7.0.0"
|
48
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0.tgz#1efd58bffa951dc846449e58ce3a1d7f02d393aa"
|
49
|
+
dependencies:
|
50
|
+
"@babel/types" "^7.0.0"
|
51
|
+
jsesc "^2.5.1"
|
52
|
+
lodash "^4.17.10"
|
53
|
+
source-map "^0.5.0"
|
54
|
+
trim-right "^1.0.1"
|
55
|
+
|
56
|
+
"@babel/helper-annotate-as-pure@^7.0.0":
|
57
|
+
version "7.0.0"
|
58
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
|
59
|
+
dependencies:
|
60
|
+
"@babel/types" "^7.0.0"
|
61
|
+
|
62
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.0.0":
|
63
|
+
version "7.0.0"
|
64
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.0.0.tgz#ba26336beb2abb547d58b6eba5b84d77975a39eb"
|
65
|
+
dependencies:
|
66
|
+
"@babel/helper-explode-assignable-expression" "^7.0.0"
|
67
|
+
"@babel/types" "^7.0.0"
|
68
|
+
|
69
|
+
"@babel/helper-builder-react-jsx@^7.0.0":
|
70
|
+
version "7.0.0"
|
71
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0.tgz#fa154cb53eb918cf2a9a7ce928e29eb649c5acdb"
|
72
|
+
dependencies:
|
73
|
+
"@babel/types" "^7.0.0"
|
74
|
+
esutils "^2.0.0"
|
75
|
+
|
76
|
+
"@babel/helper-call-delegate@^7.0.0":
|
77
|
+
version "7.0.0"
|
78
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.0.0.tgz#e036956bb33d76e59c07a04a1fff144e9f62ab78"
|
79
|
+
dependencies:
|
80
|
+
"@babel/helper-hoist-variables" "^7.0.0"
|
81
|
+
"@babel/traverse" "^7.0.0"
|
82
|
+
"@babel/types" "^7.0.0"
|
83
|
+
|
84
|
+
"@babel/helper-define-map@^7.0.0":
|
85
|
+
version "7.0.0"
|
86
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.0.0.tgz#a5684dd2adf30f0137cf9b0bde436f8c2db17225"
|
87
|
+
dependencies:
|
88
|
+
"@babel/helper-function-name" "^7.0.0"
|
89
|
+
"@babel/types" "^7.0.0"
|
90
|
+
lodash "^4.17.10"
|
91
|
+
|
92
|
+
"@babel/helper-explode-assignable-expression@^7.0.0":
|
93
|
+
version "7.0.0"
|
94
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.0.0.tgz#fdfa4c88603ae3e954d0fc3244d5ca82fb468497"
|
95
|
+
dependencies:
|
96
|
+
"@babel/traverse" "^7.0.0"
|
97
|
+
"@babel/types" "^7.0.0"
|
98
|
+
|
99
|
+
"@babel/helper-function-name@^7.0.0":
|
100
|
+
version "7.0.0"
|
101
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0.tgz#a68cc8d04420ccc663dd258f9cc41b8261efa2d4"
|
102
|
+
dependencies:
|
103
|
+
"@babel/helper-get-function-arity" "^7.0.0"
|
104
|
+
"@babel/template" "^7.0.0"
|
105
|
+
"@babel/types" "^7.0.0"
|
106
|
+
|
107
|
+
"@babel/helper-get-function-arity@^7.0.0":
|
108
|
+
version "7.0.0"
|
109
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
|
110
|
+
dependencies:
|
111
|
+
"@babel/types" "^7.0.0"
|
112
|
+
|
113
|
+
"@babel/helper-hoist-variables@^7.0.0":
|
114
|
+
version "7.0.0"
|
115
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz#46adc4c5e758645ae7a45deb92bab0918c23bb88"
|
116
|
+
dependencies:
|
117
|
+
"@babel/types" "^7.0.0"
|
118
|
+
|
119
|
+
"@babel/helper-member-expression-to-functions@^7.0.0":
|
120
|
+
version "7.0.0"
|
121
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz#8cd14b0a0df7ff00f009e7d7a436945f47c7a16f"
|
122
|
+
dependencies:
|
123
|
+
"@babel/types" "^7.0.0"
|
124
|
+
|
125
|
+
"@babel/helper-module-imports@^7.0.0":
|
126
|
+
version "7.0.0"
|
127
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d"
|
128
|
+
dependencies:
|
129
|
+
"@babel/types" "^7.0.0"
|
130
|
+
|
131
|
+
"@babel/helper-module-transforms@^7.0.0":
|
132
|
+
version "7.0.0"
|
133
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.0.0.tgz#b01ee7d543e81e8c3fc404b19c9f26acb6e4cf4c"
|
134
|
+
dependencies:
|
135
|
+
"@babel/helper-module-imports" "^7.0.0"
|
136
|
+
"@babel/helper-simple-access" "^7.0.0"
|
137
|
+
"@babel/helper-split-export-declaration" "^7.0.0"
|
138
|
+
"@babel/template" "^7.0.0"
|
139
|
+
"@babel/types" "^7.0.0"
|
140
|
+
lodash "^4.17.10"
|
141
|
+
|
142
|
+
"@babel/helper-optimise-call-expression@^7.0.0":
|
143
|
+
version "7.0.0"
|
144
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
|
145
|
+
dependencies:
|
146
|
+
"@babel/types" "^7.0.0"
|
147
|
+
|
148
|
+
"@babel/helper-plugin-utils@^7.0.0":
|
149
|
+
version "7.0.0"
|
150
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
|
151
|
+
|
152
|
+
"@babel/helper-regex@^7.0.0":
|
153
|
+
version "7.0.0"
|
154
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27"
|
155
|
+
dependencies:
|
156
|
+
lodash "^4.17.10"
|
157
|
+
|
158
|
+
"@babel/helper-remap-async-to-generator@^7.0.0":
|
159
|
+
version "7.0.0"
|
160
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.0.0.tgz#6512273c2feb91587822335cf913fdf680c26901"
|
161
|
+
dependencies:
|
162
|
+
"@babel/helper-annotate-as-pure" "^7.0.0"
|
163
|
+
"@babel/helper-wrap-function" "^7.0.0"
|
164
|
+
"@babel/template" "^7.0.0"
|
165
|
+
"@babel/traverse" "^7.0.0"
|
166
|
+
"@babel/types" "^7.0.0"
|
167
|
+
|
168
|
+
"@babel/helper-replace-supers@^7.0.0":
|
169
|
+
version "7.0.0"
|
170
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.0.0.tgz#b6f21237280e0be54f591f63a464b66627ced707"
|
171
|
+
dependencies:
|
172
|
+
"@babel/helper-member-expression-to-functions" "^7.0.0"
|
173
|
+
"@babel/helper-optimise-call-expression" "^7.0.0"
|
174
|
+
"@babel/traverse" "^7.0.0"
|
175
|
+
"@babel/types" "^7.0.0"
|
176
|
+
|
177
|
+
"@babel/helper-simple-access@^7.0.0":
|
178
|
+
version "7.0.0"
|
179
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.0.0.tgz#ff36a27983ae4c27122da2f7f294dced80ecbd08"
|
180
|
+
dependencies:
|
181
|
+
"@babel/template" "^7.0.0"
|
182
|
+
"@babel/types" "^7.0.0"
|
183
|
+
|
184
|
+
"@babel/helper-split-export-declaration@^7.0.0":
|
185
|
+
version "7.0.0"
|
186
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813"
|
187
|
+
dependencies:
|
188
|
+
"@babel/types" "^7.0.0"
|
189
|
+
|
190
|
+
"@babel/helper-wrap-function@^7.0.0":
|
191
|
+
version "7.0.0"
|
192
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.0.0.tgz#1c8e42a2cfb0808e3140189dfe9490782a6fa740"
|
193
|
+
dependencies:
|
194
|
+
"@babel/helper-function-name" "^7.0.0"
|
195
|
+
"@babel/template" "^7.0.0"
|
196
|
+
"@babel/traverse" "^7.0.0"
|
197
|
+
"@babel/types" "^7.0.0"
|
198
|
+
|
199
|
+
"@babel/helpers@^7.0.0":
|
200
|
+
version "7.0.0"
|
201
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.0.0.tgz#7213388341eeb07417f44710fd7e1d00acfa6ac0"
|
202
|
+
dependencies:
|
203
|
+
"@babel/template" "^7.0.0"
|
204
|
+
"@babel/traverse" "^7.0.0"
|
205
|
+
"@babel/types" "^7.0.0"
|
206
|
+
|
207
|
+
"@babel/highlight@^7.0.0":
|
208
|
+
version "7.0.0"
|
209
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
|
210
|
+
dependencies:
|
211
|
+
chalk "^2.0.0"
|
212
|
+
esutils "^2.0.2"
|
213
|
+
js-tokens "^4.0.0"
|
214
|
+
|
215
|
+
"@babel/parser@^7.0.0":
|
216
|
+
version "7.0.0"
|
217
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.0.0.tgz#697655183394facffb063437ddf52c0277698775"
|
218
|
+
|
219
|
+
"@babel/plugin-proposal-async-generator-functions@^7.0.0":
|
220
|
+
version "7.0.0"
|
221
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.0.0.tgz#5d1eb6b44fd388b97f964350007ab9da090b1d70"
|
222
|
+
dependencies:
|
223
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
224
|
+
"@babel/helper-remap-async-to-generator" "^7.0.0"
|
225
|
+
"@babel/plugin-syntax-async-generators" "^7.0.0"
|
226
|
+
|
227
|
+
"@babel/plugin-proposal-json-strings@^7.0.0":
|
228
|
+
version "7.0.0"
|
229
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.0.0.tgz#3b4d7b5cf51e1f2e70f52351d28d44fc2970d01e"
|
230
|
+
dependencies:
|
231
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
232
|
+
"@babel/plugin-syntax-json-strings" "^7.0.0"
|
233
|
+
|
234
|
+
"@babel/plugin-proposal-object-rest-spread@^7.0.0":
|
235
|
+
version "7.0.0"
|
236
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0.tgz#9a17b547f64d0676b6c9cecd4edf74a82ab85e7e"
|
237
|
+
dependencies:
|
238
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
239
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
|
240
|
+
|
241
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.0.0":
|
242
|
+
version "7.0.0"
|
243
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.0.0.tgz#b610d928fe551ff7117d42c8bb410eec312a6425"
|
244
|
+
dependencies:
|
245
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
246
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.0.0"
|
247
|
+
|
248
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.0.0":
|
249
|
+
version "7.0.0"
|
250
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0.tgz#498b39cd72536cd7c4b26177d030226eba08cd33"
|
251
|
+
dependencies:
|
252
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
253
|
+
"@babel/helper-regex" "^7.0.0"
|
254
|
+
regexpu-core "^4.2.0"
|
255
|
+
|
256
|
+
"@babel/plugin-syntax-async-generators@^7.0.0":
|
257
|
+
version "7.0.0"
|
258
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.0.0.tgz#bf0891dcdbf59558359d0c626fdc9490e20bc13c"
|
259
|
+
dependencies:
|
260
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
261
|
+
|
262
|
+
"@babel/plugin-syntax-flow@^7.0.0":
|
263
|
+
version "7.0.0"
|
264
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.0.0.tgz#70638aeaad9ee426bc532e51523cff8ff02f6f17"
|
265
|
+
dependencies:
|
266
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
267
|
+
|
268
|
+
"@babel/plugin-syntax-json-strings@^7.0.0":
|
269
|
+
version "7.0.0"
|
270
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.0.0.tgz#0d259a68090e15b383ce3710e01d5b23f3770cbd"
|
271
|
+
dependencies:
|
272
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
273
|
+
|
274
|
+
"@babel/plugin-syntax-jsx@^7.0.0":
|
275
|
+
version "7.0.0"
|
276
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0.tgz#034d5e2b4e14ccaea2e4c137af7e4afb39375ffd"
|
277
|
+
dependencies:
|
278
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
279
|
+
|
280
|
+
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
|
281
|
+
version "7.0.0"
|
282
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0.tgz#37d8fbcaf216bd658ea1aebbeb8b75e88ebc549b"
|
283
|
+
dependencies:
|
284
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
285
|
+
|
286
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.0.0":
|
287
|
+
version "7.0.0"
|
288
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.0.0.tgz#886f72008b3a8b185977f7cb70713b45e51ee475"
|
289
|
+
dependencies:
|
290
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
291
|
+
|
292
|
+
"@babel/plugin-transform-arrow-functions@^7.0.0":
|
293
|
+
version "7.0.0"
|
294
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0.tgz#a6c14875848c68a3b4b3163a486535ef25c7e749"
|
295
|
+
dependencies:
|
296
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
297
|
+
|
298
|
+
"@babel/plugin-transform-async-to-generator@^7.0.0":
|
299
|
+
version "7.0.0"
|
300
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.0.0.tgz#feaf18f4bfeaf2236eea4b2d4879da83006cc8f5"
|
301
|
+
dependencies:
|
302
|
+
"@babel/helper-module-imports" "^7.0.0"
|
303
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
304
|
+
"@babel/helper-remap-async-to-generator" "^7.0.0"
|
305
|
+
|
306
|
+
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
|
307
|
+
version "7.0.0"
|
308
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.0.0.tgz#482b3f75103927e37288b3b67b65f848e2aa0d07"
|
309
|
+
dependencies:
|
310
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
311
|
+
|
312
|
+
"@babel/plugin-transform-block-scoping@^7.0.0":
|
313
|
+
version "7.0.0"
|
314
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0.tgz#1745075edffd7cdaf69fab2fb6f9694424b7e9bc"
|
315
|
+
dependencies:
|
316
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
317
|
+
lodash "^4.17.10"
|
318
|
+
|
319
|
+
"@babel/plugin-transform-classes@^7.0.0":
|
320
|
+
version "7.0.0"
|
321
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.0.0.tgz#9e65ca401747dde99e344baea90ab50dccb4c468"
|
322
|
+
dependencies:
|
323
|
+
"@babel/helper-annotate-as-pure" "^7.0.0"
|
324
|
+
"@babel/helper-define-map" "^7.0.0"
|
325
|
+
"@babel/helper-function-name" "^7.0.0"
|
326
|
+
"@babel/helper-optimise-call-expression" "^7.0.0"
|
327
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
328
|
+
"@babel/helper-replace-supers" "^7.0.0"
|
329
|
+
"@babel/helper-split-export-declaration" "^7.0.0"
|
330
|
+
globals "^11.1.0"
|
331
|
+
|
332
|
+
"@babel/plugin-transform-computed-properties@^7.0.0":
|
333
|
+
version "7.0.0"
|
334
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0.tgz#2fbb8900cd3e8258f2a2ede909b90e7556185e31"
|
335
|
+
dependencies:
|
336
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
337
|
+
|
338
|
+
"@babel/plugin-transform-destructuring@^7.0.0":
|
339
|
+
version "7.0.0"
|
340
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0.tgz#68e911e1935dda2f06b6ccbbf184ffb024e9d43a"
|
341
|
+
dependencies:
|
342
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
343
|
+
|
344
|
+
"@babel/plugin-transform-dotall-regex@^7.0.0":
|
345
|
+
version "7.0.0"
|
346
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.0.0.tgz#73a24da69bc3c370251f43a3d048198546115e58"
|
347
|
+
dependencies:
|
348
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
349
|
+
"@babel/helper-regex" "^7.0.0"
|
350
|
+
regexpu-core "^4.1.3"
|
351
|
+
|
352
|
+
"@babel/plugin-transform-duplicate-keys@^7.0.0":
|
353
|
+
version "7.0.0"
|
354
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.0.0.tgz#a0601e580991e7cace080e4cf919cfd58da74e86"
|
355
|
+
dependencies:
|
356
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
357
|
+
|
358
|
+
"@babel/plugin-transform-exponentiation-operator@^7.0.0":
|
359
|
+
version "7.0.0"
|
360
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.0.0.tgz#c51b45e090a01876f64d32b5b46c0799c85ea56c"
|
361
|
+
dependencies:
|
362
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.0.0"
|
363
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
364
|
+
|
365
|
+
"@babel/plugin-transform-flow-strip-types@^7.0.0":
|
366
|
+
version "7.0.0"
|
367
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.0.0.tgz#c40ced34c2783985d90d9f9ac77a13e6fb396a01"
|
368
|
+
dependencies:
|
369
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
370
|
+
"@babel/plugin-syntax-flow" "^7.0.0"
|
371
|
+
|
372
|
+
"@babel/plugin-transform-for-of@^7.0.0":
|
373
|
+
version "7.0.0"
|
374
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0.tgz#f2ba4eadb83bd17dc3c7e9b30f4707365e1c3e39"
|
375
|
+
dependencies:
|
376
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
377
|
+
|
378
|
+
"@babel/plugin-transform-function-name@^7.0.0":
|
379
|
+
version "7.0.0"
|
380
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.0.0.tgz#eeda18dc22584e13c3581a68f6be4822bb1d1d81"
|
381
|
+
dependencies:
|
382
|
+
"@babel/helper-function-name" "^7.0.0"
|
383
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
384
|
+
|
385
|
+
"@babel/plugin-transform-literals@^7.0.0":
|
386
|
+
version "7.0.0"
|
387
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0.tgz#2aec1d29cdd24c407359c930cdd89e914ee8ff86"
|
388
|
+
dependencies:
|
389
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
390
|
+
|
391
|
+
"@babel/plugin-transform-modules-amd@^7.0.0":
|
392
|
+
version "7.0.0"
|
393
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.0.0.tgz#2430ab73db9960c4ca89966f425b803f5d0d0468"
|
394
|
+
dependencies:
|
395
|
+
"@babel/helper-module-transforms" "^7.0.0"
|
396
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
397
|
+
|
398
|
+
"@babel/plugin-transform-modules-commonjs@^7.0.0":
|
399
|
+
version "7.0.0"
|
400
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.0.0.tgz#20b906e5ab130dd8e456b694a94d9575da0fd41f"
|
401
|
+
dependencies:
|
402
|
+
"@babel/helper-module-transforms" "^7.0.0"
|
403
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
404
|
+
"@babel/helper-simple-access" "^7.0.0"
|
405
|
+
|
406
|
+
"@babel/plugin-transform-modules-systemjs@^7.0.0":
|
407
|
+
version "7.0.0"
|
408
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.0.0.tgz#8873d876d4fee23209decc4d1feab8f198cf2df4"
|
409
|
+
dependencies:
|
410
|
+
"@babel/helper-hoist-variables" "^7.0.0"
|
411
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
412
|
+
|
413
|
+
"@babel/plugin-transform-modules-umd@^7.0.0":
|
414
|
+
version "7.0.0"
|
415
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.0.0.tgz#e7bb4f2a6cd199668964241951a25013450349be"
|
416
|
+
dependencies:
|
417
|
+
"@babel/helper-module-transforms" "^7.0.0"
|
418
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
419
|
+
|
420
|
+
"@babel/plugin-transform-new-target@^7.0.0":
|
421
|
+
version "7.0.0"
|
422
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz#ae8fbd89517fa7892d20e6564e641e8770c3aa4a"
|
423
|
+
dependencies:
|
424
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
425
|
+
|
426
|
+
"@babel/plugin-transform-object-super@^7.0.0":
|
427
|
+
version "7.0.0"
|
428
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.0.0.tgz#b8587d511309b3a0e96e9e38169908b3e392041e"
|
429
|
+
dependencies:
|
430
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
431
|
+
"@babel/helper-replace-supers" "^7.0.0"
|
432
|
+
|
433
|
+
"@babel/plugin-transform-parameters@^7.0.0":
|
434
|
+
version "7.0.0"
|
435
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.0.0.tgz#da864efa111816a6df161d492f33de10e74b1949"
|
436
|
+
dependencies:
|
437
|
+
"@babel/helper-call-delegate" "^7.0.0"
|
438
|
+
"@babel/helper-get-function-arity" "^7.0.0"
|
439
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
440
|
+
|
441
|
+
"@babel/plugin-transform-react-display-name@^7.0.0":
|
442
|
+
version "7.0.0"
|
443
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.0.0.tgz#93759e6c023782e52c2da3b75eca60d4f10533ee"
|
444
|
+
dependencies:
|
445
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
446
|
+
|
447
|
+
"@babel/plugin-transform-react-jsx-self@^7.0.0":
|
448
|
+
version "7.0.0"
|
449
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.0.0.tgz#a84bb70fea302d915ea81d9809e628266bb0bc11"
|
450
|
+
dependencies:
|
451
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
452
|
+
"@babel/plugin-syntax-jsx" "^7.0.0"
|
453
|
+
|
454
|
+
"@babel/plugin-transform-react-jsx-source@^7.0.0":
|
455
|
+
version "7.0.0"
|
456
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0.tgz#28e00584f9598c0dd279f6280eee213fa0121c3c"
|
457
|
+
dependencies:
|
458
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
459
|
+
"@babel/plugin-syntax-jsx" "^7.0.0"
|
460
|
+
|
461
|
+
"@babel/plugin-transform-react-jsx@^7.0.0":
|
462
|
+
version "7.0.0"
|
463
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.0.0.tgz#524379e4eca5363cd10c4446ba163f093da75f3e"
|
464
|
+
dependencies:
|
465
|
+
"@babel/helper-builder-react-jsx" "^7.0.0"
|
466
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
467
|
+
"@babel/plugin-syntax-jsx" "^7.0.0"
|
468
|
+
|
469
|
+
"@babel/plugin-transform-regenerator@^7.0.0":
|
470
|
+
version "7.0.0"
|
471
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1"
|
472
|
+
dependencies:
|
473
|
+
regenerator-transform "^0.13.3"
|
474
|
+
|
475
|
+
"@babel/plugin-transform-runtime@^7.0.0":
|
476
|
+
version "7.0.0"
|
477
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.0.0.tgz#0f1443c07bac16dba8efa939e0c61d6922740062"
|
478
|
+
dependencies:
|
479
|
+
"@babel/helper-module-imports" "^7.0.0"
|
480
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
481
|
+
resolve "^1.8.1"
|
482
|
+
|
483
|
+
"@babel/plugin-transform-shorthand-properties@^7.0.0":
|
484
|
+
version "7.0.0"
|
485
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0.tgz#85f8af592dcc07647541a0350e8c95c7bf419d15"
|
486
|
+
dependencies:
|
487
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
488
|
+
|
489
|
+
"@babel/plugin-transform-spread@^7.0.0":
|
490
|
+
version "7.0.0"
|
491
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0.tgz#93583ce48dd8c85e53f3a46056c856e4af30b49b"
|
492
|
+
dependencies:
|
493
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
494
|
+
|
495
|
+
"@babel/plugin-transform-sticky-regex@^7.0.0":
|
496
|
+
version "7.0.0"
|
497
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0.tgz#30a9d64ac2ab46eec087b8530535becd90e73366"
|
498
|
+
dependencies:
|
499
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
500
|
+
"@babel/helper-regex" "^7.0.0"
|
501
|
+
|
502
|
+
"@babel/plugin-transform-template-literals@^7.0.0":
|
503
|
+
version "7.0.0"
|
504
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0.tgz#084f1952efe5b153ddae69eb8945f882c7a97c65"
|
505
|
+
dependencies:
|
506
|
+
"@babel/helper-annotate-as-pure" "^7.0.0"
|
507
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
508
|
+
|
509
|
+
"@babel/plugin-transform-typeof-symbol@^7.0.0":
|
510
|
+
version "7.0.0"
|
511
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.0.0.tgz#4dcf1e52e943e5267b7313bff347fdbe0f81cec9"
|
512
|
+
dependencies:
|
513
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
514
|
+
|
515
|
+
"@babel/plugin-transform-unicode-regex@^7.0.0":
|
516
|
+
version "7.0.0"
|
517
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0.tgz#c6780e5b1863a76fe792d90eded9fcd5b51d68fc"
|
518
|
+
dependencies:
|
519
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
520
|
+
"@babel/helper-regex" "^7.0.0"
|
521
|
+
regexpu-core "^4.1.3"
|
522
|
+
|
523
|
+
"@babel/polyfill@^7.0.0":
|
524
|
+
version "7.0.0"
|
525
|
+
resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.0.0.tgz#c8ff65c9ec3be6a1ba10113ebd40e8750fb90bff"
|
526
|
+
dependencies:
|
527
|
+
core-js "^2.5.7"
|
528
|
+
regenerator-runtime "^0.11.1"
|
529
|
+
|
530
|
+
"@babel/preset-env@^7.0.0":
|
531
|
+
version "7.0.0"
|
532
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.0.0.tgz#f450f200c14e713f98cb14d113bf0c2cfbb89ca9"
|
533
|
+
dependencies:
|
534
|
+
"@babel/helper-module-imports" "^7.0.0"
|
535
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
536
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.0.0"
|
537
|
+
"@babel/plugin-proposal-json-strings" "^7.0.0"
|
538
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.0.0"
|
539
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
|
540
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.0.0"
|
541
|
+
"@babel/plugin-syntax-async-generators" "^7.0.0"
|
542
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
|
543
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.0.0"
|
544
|
+
"@babel/plugin-transform-arrow-functions" "^7.0.0"
|
545
|
+
"@babel/plugin-transform-async-to-generator" "^7.0.0"
|
546
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.0.0"
|
547
|
+
"@babel/plugin-transform-block-scoping" "^7.0.0"
|
548
|
+
"@babel/plugin-transform-classes" "^7.0.0"
|
549
|
+
"@babel/plugin-transform-computed-properties" "^7.0.0"
|
550
|
+
"@babel/plugin-transform-destructuring" "^7.0.0"
|
551
|
+
"@babel/plugin-transform-dotall-regex" "^7.0.0"
|
552
|
+
"@babel/plugin-transform-duplicate-keys" "^7.0.0"
|
553
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.0.0"
|
554
|
+
"@babel/plugin-transform-for-of" "^7.0.0"
|
555
|
+
"@babel/plugin-transform-function-name" "^7.0.0"
|
556
|
+
"@babel/plugin-transform-literals" "^7.0.0"
|
557
|
+
"@babel/plugin-transform-modules-amd" "^7.0.0"
|
558
|
+
"@babel/plugin-transform-modules-commonjs" "^7.0.0"
|
559
|
+
"@babel/plugin-transform-modules-systemjs" "^7.0.0"
|
560
|
+
"@babel/plugin-transform-modules-umd" "^7.0.0"
|
561
|
+
"@babel/plugin-transform-new-target" "^7.0.0"
|
562
|
+
"@babel/plugin-transform-object-super" "^7.0.0"
|
563
|
+
"@babel/plugin-transform-parameters" "^7.0.0"
|
564
|
+
"@babel/plugin-transform-regenerator" "^7.0.0"
|
565
|
+
"@babel/plugin-transform-shorthand-properties" "^7.0.0"
|
566
|
+
"@babel/plugin-transform-spread" "^7.0.0"
|
567
|
+
"@babel/plugin-transform-sticky-regex" "^7.0.0"
|
568
|
+
"@babel/plugin-transform-template-literals" "^7.0.0"
|
569
|
+
"@babel/plugin-transform-typeof-symbol" "^7.0.0"
|
570
|
+
"@babel/plugin-transform-unicode-regex" "^7.0.0"
|
571
|
+
browserslist "^4.1.0"
|
572
|
+
invariant "^2.2.2"
|
573
|
+
js-levenshtein "^1.1.3"
|
574
|
+
semver "^5.3.0"
|
575
|
+
|
576
|
+
"@babel/preset-react@^7.0.0":
|
577
|
+
version "7.0.0"
|
578
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0"
|
579
|
+
dependencies:
|
580
|
+
"@babel/helper-plugin-utils" "^7.0.0"
|
581
|
+
"@babel/plugin-transform-react-display-name" "^7.0.0"
|
582
|
+
"@babel/plugin-transform-react-jsx" "^7.0.0"
|
583
|
+
"@babel/plugin-transform-react-jsx-self" "^7.0.0"
|
584
|
+
"@babel/plugin-transform-react-jsx-source" "^7.0.0"
|
585
|
+
|
586
|
+
"@babel/register@^7.0.0":
|
587
|
+
version "7.0.0"
|
588
|
+
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.0.0.tgz#fa634bae1bfa429f60615b754fc1f1d745edd827"
|
589
|
+
dependencies:
|
590
|
+
core-js "^2.5.7"
|
591
|
+
find-cache-dir "^1.0.0"
|
592
|
+
home-or-tmp "^3.0.0"
|
593
|
+
lodash "^4.17.10"
|
594
|
+
mkdirp "^0.5.1"
|
595
|
+
pirates "^4.0.0"
|
596
|
+
source-map-support "^0.5.9"
|
597
|
+
|
598
|
+
"@babel/runtime-corejs2@^7.0.0":
|
599
|
+
version "7.0.0"
|
600
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.0.0.tgz#786711ee099c2c2af7875638866c1259eff30a8c"
|
601
|
+
dependencies:
|
602
|
+
core-js "^2.5.7"
|
603
|
+
regenerator-runtime "^0.12.0"
|
604
|
+
|
605
|
+
"@babel/template@^7.0.0":
|
606
|
+
version "7.0.0"
|
607
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0.tgz#c2bc9870405959c89a9c814376a2ecb247838c80"
|
608
|
+
dependencies:
|
609
|
+
"@babel/code-frame" "^7.0.0"
|
610
|
+
"@babel/parser" "^7.0.0"
|
611
|
+
"@babel/types" "^7.0.0"
|
612
|
+
|
613
|
+
"@babel/traverse@^7.0.0":
|
614
|
+
version "7.0.0"
|
615
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0.tgz#b1fe9b6567fdf3ab542cfad6f3b31f854d799a61"
|
616
|
+
dependencies:
|
617
|
+
"@babel/code-frame" "^7.0.0"
|
618
|
+
"@babel/generator" "^7.0.0"
|
619
|
+
"@babel/helper-function-name" "^7.0.0"
|
620
|
+
"@babel/helper-split-export-declaration" "^7.0.0"
|
621
|
+
"@babel/parser" "^7.0.0"
|
622
|
+
"@babel/types" "^7.0.0"
|
623
|
+
debug "^3.1.0"
|
624
|
+
globals "^11.1.0"
|
625
|
+
lodash "^4.17.10"
|
626
|
+
|
627
|
+
"@babel/types@^7.0.0":
|
628
|
+
version "7.0.0"
|
629
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0.tgz#6e191793d3c854d19c6749989e3bc55f0e962118"
|
630
|
+
dependencies:
|
631
|
+
esutils "^2.0.2"
|
632
|
+
lodash "^4.17.10"
|
633
|
+
to-fast-properties "^2.0.0"
|
634
|
+
|
5
635
|
"@types/node@^6.0.46":
|
6
636
|
version "6.0.88"
|
7
637
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66"
|
@@ -99,6 +729,12 @@ ansi-styles@^2.2.1:
|
|
99
729
|
version "2.2.1"
|
100
730
|
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
|
101
731
|
|
732
|
+
ansi-styles@^3.2.1:
|
733
|
+
version "3.2.1"
|
734
|
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
735
|
+
dependencies:
|
736
|
+
color-convert "^1.9.0"
|
737
|
+
|
102
738
|
anymatch@^1.3.0:
|
103
739
|
version "1.3.2"
|
104
740
|
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
|
@@ -106,6 +742,13 @@ anymatch@^1.3.0:
|
|
106
742
|
micromatch "^2.1.5"
|
107
743
|
normalize-path "^2.0.0"
|
108
744
|
|
745
|
+
anymatch@^2.0.0:
|
746
|
+
version "2.0.0"
|
747
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
|
748
|
+
dependencies:
|
749
|
+
micromatch "^3.1.4"
|
750
|
+
normalize-path "^2.1.1"
|
751
|
+
|
109
752
|
aproba@^1.0.3:
|
110
753
|
version "1.1.2"
|
111
754
|
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
|
@@ -135,10 +778,18 @@ arr-diff@^2.0.0:
|
|
135
778
|
dependencies:
|
136
779
|
arr-flatten "^1.0.1"
|
137
780
|
|
138
|
-
arr-
|
781
|
+
arr-diff@^4.0.0:
|
782
|
+
version "4.0.0"
|
783
|
+
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
|
784
|
+
|
785
|
+
arr-flatten@^1.0.1, arr-flatten@^1.1.0:
|
139
786
|
version "1.1.0"
|
140
787
|
resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
|
141
788
|
|
789
|
+
arr-union@^3.1.0:
|
790
|
+
version "3.1.0"
|
791
|
+
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
|
792
|
+
|
142
793
|
array-equal@^1.0.0:
|
143
794
|
version "1.0.0"
|
144
795
|
resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
|
@@ -164,6 +815,10 @@ array-unique@^0.2.1:
|
|
164
815
|
version "0.2.1"
|
165
816
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
|
166
817
|
|
818
|
+
array-unique@^0.3.2:
|
819
|
+
version "0.3.2"
|
820
|
+
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
821
|
+
|
167
822
|
arrify@^1.0.0:
|
168
823
|
version "1.0.1"
|
169
824
|
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
|
@@ -182,661 +837,139 @@ asn1.js@^4.0.0:
|
|
182
837
|
|
183
838
|
asn1@~0.2.3:
|
184
839
|
version "0.2.3"
|
185
|
-
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
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
|
-
|
191
|
-
assert-plus@^0.2.0:
|
192
|
-
version "0.2.0"
|
193
|
-
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
|
194
|
-
|
195
|
-
assert@^1.1.1:
|
196
|
-
version "1.4.1"
|
197
|
-
resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
|
198
|
-
dependencies:
|
199
|
-
util "0.10.3"
|
200
|
-
|
201
|
-
ast-types-flow@0.0.7:
|
202
|
-
version "0.0.7"
|
203
|
-
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
|
204
|
-
|
205
|
-
async-each@^1.0.0:
|
206
|
-
version "1.0.1"
|
207
|
-
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
208
|
-
|
209
|
-
async@^2.1.2:
|
210
|
-
version "2.5.0"
|
211
|
-
resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
|
212
|
-
dependencies:
|
213
|
-
lodash "^4.14.0"
|
214
|
-
|
215
|
-
asynckit@^0.4.0:
|
216
|
-
version "0.4.0"
|
217
|
-
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
218
|
-
|
219
|
-
aws-sign2@~0.6.0:
|
220
|
-
version "0.6.0"
|
221
|
-
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
|
222
|
-
|
223
|
-
aws4@^1.2.1:
|
224
|
-
version "1.6.0"
|
225
|
-
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
226
|
-
|
227
|
-
axobject-query@^0.1.0:
|
228
|
-
version "0.1.0"
|
229
|
-
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0"
|
230
|
-
dependencies:
|
231
|
-
ast-types-flow "0.0.7"
|
232
|
-
|
233
|
-
babel-cli@^6.24.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"
|
243
|
-
fs-readdir-recursive "^1.0.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"
|
248
|
-
slash "^1.0.0"
|
249
|
-
source-map "^0.5.6"
|
250
|
-
v8flags "^2.1.1"
|
251
|
-
optionalDependencies:
|
252
|
-
chokidar "^1.6.1"
|
253
|
-
|
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"
|
257
|
-
dependencies:
|
258
|
-
chalk "^1.1.3"
|
259
|
-
esutils "^2.0.2"
|
260
|
-
js-tokens "^3.0.2"
|
261
|
-
|
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"
|
265
|
-
dependencies:
|
266
|
-
babel-code-frame "^6.26.0"
|
267
|
-
babel-generator "^6.26.0"
|
268
|
-
babel-helpers "^6.24.1"
|
269
|
-
babel-messages "^6.23.0"
|
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"
|
283
|
-
slash "^1.0.0"
|
284
|
-
source-map "^0.5.6"
|
285
|
-
|
286
|
-
babel-eslint@^7.1.1:
|
287
|
-
version "7.2.3"
|
288
|
-
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
|
289
|
-
dependencies:
|
290
|
-
babel-code-frame "^6.22.0"
|
291
|
-
babel-traverse "^6.23.1"
|
292
|
-
babel-types "^6.23.0"
|
293
|
-
babylon "^6.17.0"
|
294
|
-
|
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"
|
298
|
-
dependencies:
|
299
|
-
babel-messages "^6.23.0"
|
300
|
-
babel-runtime "^6.26.0"
|
301
|
-
babel-types "^6.26.0"
|
302
|
-
detect-indent "^4.0.0"
|
303
|
-
jsesc "^1.3.0"
|
304
|
-
lodash "^4.17.4"
|
305
|
-
source-map "^0.5.6"
|
306
|
-
trim-right "^1.0.1"
|
307
|
-
|
308
|
-
babel-helper-bindify-decorators@^6.24.1:
|
309
|
-
version "6.24.1"
|
310
|
-
resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
|
311
|
-
dependencies:
|
312
|
-
babel-runtime "^6.22.0"
|
313
|
-
babel-traverse "^6.24.1"
|
314
|
-
babel-types "^6.24.1"
|
315
|
-
|
316
|
-
babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
|
317
|
-
version "6.24.1"
|
318
|
-
resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
|
319
|
-
dependencies:
|
320
|
-
babel-helper-explode-assignable-expression "^6.24.1"
|
321
|
-
babel-runtime "^6.22.0"
|
322
|
-
babel-types "^6.24.1"
|
323
|
-
|
324
|
-
babel-helper-builder-react-jsx@^6.24.1:
|
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"
|
327
|
-
dependencies:
|
328
|
-
babel-runtime "^6.26.0"
|
329
|
-
babel-types "^6.26.0"
|
330
|
-
esutils "^2.0.2"
|
331
|
-
|
332
|
-
babel-helper-call-delegate@^6.24.1:
|
333
|
-
version "6.24.1"
|
334
|
-
resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
|
335
|
-
dependencies:
|
336
|
-
babel-helper-hoist-variables "^6.24.1"
|
337
|
-
babel-runtime "^6.22.0"
|
338
|
-
babel-traverse "^6.24.1"
|
339
|
-
babel-types "^6.24.1"
|
340
|
-
|
341
|
-
babel-helper-define-map@^6.24.1:
|
342
|
-
version "6.26.0"
|
343
|
-
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
|
344
|
-
dependencies:
|
345
|
-
babel-helper-function-name "^6.24.1"
|
346
|
-
babel-runtime "^6.26.0"
|
347
|
-
babel-types "^6.26.0"
|
348
|
-
lodash "^4.17.4"
|
349
|
-
|
350
|
-
babel-helper-explode-assignable-expression@^6.24.1:
|
351
|
-
version "6.24.1"
|
352
|
-
resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
|
353
|
-
dependencies:
|
354
|
-
babel-runtime "^6.22.0"
|
355
|
-
babel-traverse "^6.24.1"
|
356
|
-
babel-types "^6.24.1"
|
357
|
-
|
358
|
-
babel-helper-explode-class@^6.24.1:
|
359
|
-
version "6.24.1"
|
360
|
-
resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
|
361
|
-
dependencies:
|
362
|
-
babel-helper-bindify-decorators "^6.24.1"
|
363
|
-
babel-runtime "^6.22.0"
|
364
|
-
babel-traverse "^6.24.1"
|
365
|
-
babel-types "^6.24.1"
|
366
|
-
|
367
|
-
babel-helper-function-name@^6.24.1:
|
368
|
-
version "6.24.1"
|
369
|
-
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
|
370
|
-
dependencies:
|
371
|
-
babel-helper-get-function-arity "^6.24.1"
|
372
|
-
babel-runtime "^6.22.0"
|
373
|
-
babel-template "^6.24.1"
|
374
|
-
babel-traverse "^6.24.1"
|
375
|
-
babel-types "^6.24.1"
|
376
|
-
|
377
|
-
babel-helper-get-function-arity@^6.24.1:
|
378
|
-
version "6.24.1"
|
379
|
-
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
|
380
|
-
dependencies:
|
381
|
-
babel-runtime "^6.22.0"
|
382
|
-
babel-types "^6.24.1"
|
383
|
-
|
384
|
-
babel-helper-hoist-variables@^6.24.1:
|
385
|
-
version "6.24.1"
|
386
|
-
resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
|
387
|
-
dependencies:
|
388
|
-
babel-runtime "^6.22.0"
|
389
|
-
babel-types "^6.24.1"
|
390
|
-
|
391
|
-
babel-helper-optimise-call-expression@^6.24.1:
|
392
|
-
version "6.24.1"
|
393
|
-
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
|
394
|
-
dependencies:
|
395
|
-
babel-runtime "^6.22.0"
|
396
|
-
babel-types "^6.24.1"
|
397
|
-
|
398
|
-
babel-helper-regex@^6.24.1:
|
399
|
-
version "6.26.0"
|
400
|
-
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
|
401
|
-
dependencies:
|
402
|
-
babel-runtime "^6.26.0"
|
403
|
-
babel-types "^6.26.0"
|
404
|
-
lodash "^4.17.4"
|
405
|
-
|
406
|
-
babel-helper-remap-async-to-generator@^6.24.1:
|
407
|
-
version "6.24.1"
|
408
|
-
resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
|
409
|
-
dependencies:
|
410
|
-
babel-helper-function-name "^6.24.1"
|
411
|
-
babel-runtime "^6.22.0"
|
412
|
-
babel-template "^6.24.1"
|
413
|
-
babel-traverse "^6.24.1"
|
414
|
-
babel-types "^6.24.1"
|
415
|
-
|
416
|
-
babel-helper-replace-supers@^6.24.1:
|
417
|
-
version "6.24.1"
|
418
|
-
resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
|
419
|
-
dependencies:
|
420
|
-
babel-helper-optimise-call-expression "^6.24.1"
|
421
|
-
babel-messages "^6.23.0"
|
422
|
-
babel-runtime "^6.22.0"
|
423
|
-
babel-template "^6.24.1"
|
424
|
-
babel-traverse "^6.24.1"
|
425
|
-
babel-types "^6.24.1"
|
426
|
-
|
427
|
-
babel-helpers@^6.24.1:
|
428
|
-
version "6.24.1"
|
429
|
-
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
|
430
|
-
dependencies:
|
431
|
-
babel-runtime "^6.22.0"
|
432
|
-
babel-template "^6.24.1"
|
433
|
-
|
434
|
-
babel-loader@^7.1.1:
|
435
|
-
version "7.1.2"
|
436
|
-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.2.tgz#f6cbe122710f1aa2af4d881c6d5b54358ca24126"
|
437
|
-
dependencies:
|
438
|
-
find-cache-dir "^1.0.0"
|
439
|
-
loader-utils "^1.0.2"
|
440
|
-
mkdirp "^0.5.1"
|
441
|
-
|
442
|
-
babel-messages@^6.23.0:
|
443
|
-
version "6.23.0"
|
444
|
-
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
445
|
-
dependencies:
|
446
|
-
babel-runtime "^6.22.0"
|
447
|
-
|
448
|
-
babel-plugin-check-es2015-constants@^6.22.0:
|
449
|
-
version "6.22.0"
|
450
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
|
451
|
-
dependencies:
|
452
|
-
babel-runtime "^6.22.0"
|
453
|
-
|
454
|
-
babel-plugin-react-transform@^2.0.2:
|
455
|
-
version "2.0.2"
|
456
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz#515bbfa996893981142d90b1f9b1635de2995109"
|
457
|
-
dependencies:
|
458
|
-
lodash "^4.6.1"
|
459
|
-
|
460
|
-
babel-plugin-syntax-async-functions@^6.8.0:
|
461
|
-
version "6.13.0"
|
462
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
|
463
|
-
|
464
|
-
babel-plugin-syntax-async-generators@^6.5.0:
|
465
|
-
version "6.13.0"
|
466
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
|
467
|
-
|
468
|
-
babel-plugin-syntax-class-properties@^6.8.0:
|
469
|
-
version "6.13.0"
|
470
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
|
471
|
-
|
472
|
-
babel-plugin-syntax-decorators@^6.13.0:
|
473
|
-
version "6.13.0"
|
474
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
|
475
|
-
|
476
|
-
babel-plugin-syntax-dynamic-import@^6.18.0:
|
477
|
-
version "6.18.0"
|
478
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
|
479
|
-
|
480
|
-
babel-plugin-syntax-exponentiation-operator@^6.8.0:
|
481
|
-
version "6.13.0"
|
482
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
|
483
|
-
|
484
|
-
babel-plugin-syntax-flow@^6.18.0:
|
485
|
-
version "6.18.0"
|
486
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
|
487
|
-
|
488
|
-
babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
|
489
|
-
version "6.18.0"
|
490
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
|
491
|
-
|
492
|
-
babel-plugin-syntax-object-rest-spread@^6.8.0:
|
493
|
-
version "6.13.0"
|
494
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
|
495
|
-
|
496
|
-
babel-plugin-syntax-trailing-function-commas@^6.22.0:
|
497
|
-
version "6.22.0"
|
498
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
|
499
|
-
|
500
|
-
babel-plugin-transform-async-generator-functions@^6.24.1:
|
501
|
-
version "6.24.1"
|
502
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
|
503
|
-
dependencies:
|
504
|
-
babel-helper-remap-async-to-generator "^6.24.1"
|
505
|
-
babel-plugin-syntax-async-generators "^6.5.0"
|
506
|
-
babel-runtime "^6.22.0"
|
507
|
-
|
508
|
-
babel-plugin-transform-async-to-generator@^6.24.1:
|
509
|
-
version "6.24.1"
|
510
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
|
511
|
-
dependencies:
|
512
|
-
babel-helper-remap-async-to-generator "^6.24.1"
|
513
|
-
babel-plugin-syntax-async-functions "^6.8.0"
|
514
|
-
babel-runtime "^6.22.0"
|
515
|
-
|
516
|
-
babel-plugin-transform-class-properties@^6.24.1:
|
517
|
-
version "6.24.1"
|
518
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
|
519
|
-
dependencies:
|
520
|
-
babel-helper-function-name "^6.24.1"
|
521
|
-
babel-plugin-syntax-class-properties "^6.8.0"
|
522
|
-
babel-runtime "^6.22.0"
|
523
|
-
babel-template "^6.24.1"
|
524
|
-
|
525
|
-
babel-plugin-transform-decorators@^6.24.1:
|
526
|
-
version "6.24.1"
|
527
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
|
528
|
-
dependencies:
|
529
|
-
babel-helper-explode-class "^6.24.1"
|
530
|
-
babel-plugin-syntax-decorators "^6.13.0"
|
531
|
-
babel-runtime "^6.22.0"
|
532
|
-
babel-template "^6.24.1"
|
533
|
-
babel-types "^6.24.1"
|
534
|
-
|
535
|
-
babel-plugin-transform-es2015-arrow-functions@^6.22.0:
|
536
|
-
version "6.22.0"
|
537
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
|
538
|
-
dependencies:
|
539
|
-
babel-runtime "^6.22.0"
|
540
|
-
|
541
|
-
babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
|
542
|
-
version "6.22.0"
|
543
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
|
544
|
-
dependencies:
|
545
|
-
babel-runtime "^6.22.0"
|
546
|
-
|
547
|
-
babel-plugin-transform-es2015-block-scoping@^6.24.1:
|
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"
|
550
|
-
dependencies:
|
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"
|
556
|
-
|
557
|
-
babel-plugin-transform-es2015-classes@^6.24.1:
|
558
|
-
version "6.24.1"
|
559
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
|
560
|
-
dependencies:
|
561
|
-
babel-helper-define-map "^6.24.1"
|
562
|
-
babel-helper-function-name "^6.24.1"
|
563
|
-
babel-helper-optimise-call-expression "^6.24.1"
|
564
|
-
babel-helper-replace-supers "^6.24.1"
|
565
|
-
babel-messages "^6.23.0"
|
566
|
-
babel-runtime "^6.22.0"
|
567
|
-
babel-template "^6.24.1"
|
568
|
-
babel-traverse "^6.24.1"
|
569
|
-
babel-types "^6.24.1"
|
570
|
-
|
571
|
-
babel-plugin-transform-es2015-computed-properties@^6.24.1:
|
572
|
-
version "6.24.1"
|
573
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
|
574
|
-
dependencies:
|
575
|
-
babel-runtime "^6.22.0"
|
576
|
-
babel-template "^6.24.1"
|
577
|
-
|
578
|
-
babel-plugin-transform-es2015-destructuring@^6.22.0:
|
579
|
-
version "6.23.0"
|
580
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
|
581
|
-
dependencies:
|
582
|
-
babel-runtime "^6.22.0"
|
583
|
-
|
584
|
-
babel-plugin-transform-es2015-duplicate-keys@^6.24.1:
|
585
|
-
version "6.24.1"
|
586
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
|
587
|
-
dependencies:
|
588
|
-
babel-runtime "^6.22.0"
|
589
|
-
babel-types "^6.24.1"
|
590
|
-
|
591
|
-
babel-plugin-transform-es2015-for-of@^6.22.0:
|
592
|
-
version "6.23.0"
|
593
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
|
594
|
-
dependencies:
|
595
|
-
babel-runtime "^6.22.0"
|
596
|
-
|
597
|
-
babel-plugin-transform-es2015-function-name@^6.24.1:
|
598
|
-
version "6.24.1"
|
599
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
|
600
|
-
dependencies:
|
601
|
-
babel-helper-function-name "^6.24.1"
|
602
|
-
babel-runtime "^6.22.0"
|
603
|
-
babel-types "^6.24.1"
|
604
|
-
|
605
|
-
babel-plugin-transform-es2015-literals@^6.22.0:
|
606
|
-
version "6.22.0"
|
607
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
|
608
|
-
dependencies:
|
609
|
-
babel-runtime "^6.22.0"
|
610
|
-
|
611
|
-
babel-plugin-transform-es2015-modules-amd@^6.24.1:
|
612
|
-
version "6.24.1"
|
613
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
|
614
|
-
dependencies:
|
615
|
-
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
|
616
|
-
babel-runtime "^6.22.0"
|
617
|
-
babel-template "^6.24.1"
|
618
|
-
|
619
|
-
babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
|
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"
|
622
|
-
dependencies:
|
623
|
-
babel-plugin-transform-strict-mode "^6.24.1"
|
624
|
-
babel-runtime "^6.26.0"
|
625
|
-
babel-template "^6.26.0"
|
626
|
-
babel-types "^6.26.0"
|
627
|
-
|
628
|
-
babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
|
629
|
-
version "6.24.1"
|
630
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
|
631
|
-
dependencies:
|
632
|
-
babel-helper-hoist-variables "^6.24.1"
|
633
|
-
babel-runtime "^6.22.0"
|
634
|
-
babel-template "^6.24.1"
|
635
|
-
|
636
|
-
babel-plugin-transform-es2015-modules-umd@^6.24.1:
|
637
|
-
version "6.24.1"
|
638
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
|
639
|
-
dependencies:
|
640
|
-
babel-plugin-transform-es2015-modules-amd "^6.24.1"
|
641
|
-
babel-runtime "^6.22.0"
|
642
|
-
babel-template "^6.24.1"
|
643
|
-
|
644
|
-
babel-plugin-transform-es2015-object-super@^6.24.1:
|
645
|
-
version "6.24.1"
|
646
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
|
647
|
-
dependencies:
|
648
|
-
babel-helper-replace-supers "^6.24.1"
|
649
|
-
babel-runtime "^6.22.0"
|
650
|
-
|
651
|
-
babel-plugin-transform-es2015-parameters@^6.24.1:
|
652
|
-
version "6.24.1"
|
653
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
|
654
|
-
dependencies:
|
655
|
-
babel-helper-call-delegate "^6.24.1"
|
656
|
-
babel-helper-get-function-arity "^6.24.1"
|
657
|
-
babel-runtime "^6.22.0"
|
658
|
-
babel-template "^6.24.1"
|
659
|
-
babel-traverse "^6.24.1"
|
660
|
-
babel-types "^6.24.1"
|
840
|
+
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
661
841
|
|
662
|
-
|
663
|
-
version "
|
664
|
-
resolved "https://registry.yarnpkg.com/
|
665
|
-
dependencies:
|
666
|
-
babel-runtime "^6.22.0"
|
667
|
-
babel-types "^6.24.1"
|
842
|
+
assert-plus@1.0.0, assert-plus@^1.0.0:
|
843
|
+
version "1.0.0"
|
844
|
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
|
668
845
|
|
669
|
-
|
670
|
-
version "
|
671
|
-
resolved "https://registry.yarnpkg.com/
|
672
|
-
dependencies:
|
673
|
-
babel-runtime "^6.22.0"
|
846
|
+
assert-plus@^0.2.0:
|
847
|
+
version "0.2.0"
|
848
|
+
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
|
674
849
|
|
675
|
-
|
676
|
-
version "
|
677
|
-
resolved "https://registry.yarnpkg.com/
|
850
|
+
assert@^1.1.1:
|
851
|
+
version "1.4.1"
|
852
|
+
resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
|
678
853
|
dependencies:
|
679
|
-
|
680
|
-
babel-runtime "^6.22.0"
|
681
|
-
babel-types "^6.24.1"
|
854
|
+
util "0.10.3"
|
682
855
|
|
683
|
-
|
684
|
-
version "
|
685
|
-
resolved "https://registry.yarnpkg.com/
|
686
|
-
dependencies:
|
687
|
-
babel-runtime "^6.22.0"
|
856
|
+
assign-symbols@^1.0.0:
|
857
|
+
version "1.0.0"
|
858
|
+
resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
|
688
859
|
|
689
|
-
|
690
|
-
version "
|
691
|
-
resolved "https://registry.yarnpkg.com/
|
692
|
-
dependencies:
|
693
|
-
babel-runtime "^6.22.0"
|
860
|
+
ast-types-flow@0.0.7:
|
861
|
+
version "0.0.7"
|
862
|
+
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
|
694
863
|
|
695
|
-
|
696
|
-
version "
|
697
|
-
resolved "https://registry.yarnpkg.com/
|
698
|
-
dependencies:
|
699
|
-
babel-helper-regex "^6.24.1"
|
700
|
-
babel-runtime "^6.22.0"
|
701
|
-
regexpu-core "^2.0.0"
|
864
|
+
async-each@^1.0.0:
|
865
|
+
version "1.0.1"
|
866
|
+
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
702
867
|
|
703
|
-
|
704
|
-
version "
|
705
|
-
resolved "https://registry.yarnpkg.com/
|
868
|
+
async@^2.1.2:
|
869
|
+
version "2.5.0"
|
870
|
+
resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d"
|
706
871
|
dependencies:
|
707
|
-
|
708
|
-
babel-plugin-syntax-exponentiation-operator "^6.8.0"
|
709
|
-
babel-runtime "^6.22.0"
|
872
|
+
lodash "^4.14.0"
|
710
873
|
|
711
|
-
|
712
|
-
version "
|
713
|
-
resolved "https://registry.yarnpkg.com/
|
714
|
-
dependencies:
|
715
|
-
babel-plugin-syntax-flow "^6.18.0"
|
716
|
-
babel-runtime "^6.22.0"
|
874
|
+
asynckit@^0.4.0:
|
875
|
+
version "0.4.0"
|
876
|
+
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
|
717
877
|
|
718
|
-
|
719
|
-
version "
|
720
|
-
resolved "https://registry.yarnpkg.com/
|
721
|
-
dependencies:
|
722
|
-
babel-plugin-syntax-object-rest-spread "^6.8.0"
|
723
|
-
babel-runtime "^6.26.0"
|
878
|
+
atob@^2.1.1:
|
879
|
+
version "2.1.2"
|
880
|
+
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
724
881
|
|
725
|
-
|
726
|
-
version "6.
|
727
|
-
resolved "https://registry.yarnpkg.com/
|
728
|
-
dependencies:
|
729
|
-
babel-runtime "^6.22.0"
|
882
|
+
aws-sign2@~0.6.0:
|
883
|
+
version "0.6.0"
|
884
|
+
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
|
730
885
|
|
731
|
-
|
732
|
-
version "6.
|
733
|
-
resolved "https://registry.yarnpkg.com/
|
734
|
-
dependencies:
|
735
|
-
babel-plugin-syntax-jsx "^6.8.0"
|
736
|
-
babel-runtime "^6.22.0"
|
886
|
+
aws4@^1.2.1:
|
887
|
+
version "1.6.0"
|
888
|
+
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
|
737
889
|
|
738
|
-
|
739
|
-
version "
|
740
|
-
resolved "https://registry.yarnpkg.com/
|
890
|
+
axobject-query@^0.1.0:
|
891
|
+
version "0.1.0"
|
892
|
+
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0"
|
741
893
|
dependencies:
|
742
|
-
|
743
|
-
babel-runtime "^6.22.0"
|
894
|
+
ast-types-flow "0.0.7"
|
744
895
|
|
745
|
-
babel-
|
746
|
-
version "6.
|
747
|
-
resolved "https://registry.yarnpkg.com/babel-
|
896
|
+
babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
|
897
|
+
version "6.26.0"
|
898
|
+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
|
748
899
|
dependencies:
|
749
|
-
|
750
|
-
|
751
|
-
|
900
|
+
chalk "^1.1.3"
|
901
|
+
esutils "^2.0.2"
|
902
|
+
js-tokens "^3.0.2"
|
752
903
|
|
753
|
-
babel-
|
904
|
+
babel-core@^6.0.14, babel-core@^6.26.0:
|
754
905
|
version "6.26.0"
|
755
|
-
resolved "https://registry.yarnpkg.com/babel-
|
906
|
+
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
|
756
907
|
dependencies:
|
757
|
-
|
908
|
+
babel-code-frame "^6.26.0"
|
909
|
+
babel-generator "^6.26.0"
|
910
|
+
babel-helpers "^6.24.1"
|
911
|
+
babel-messages "^6.23.0"
|
912
|
+
babel-register "^6.26.0"
|
913
|
+
babel-runtime "^6.26.0"
|
914
|
+
babel-template "^6.26.0"
|
915
|
+
babel-traverse "^6.26.0"
|
916
|
+
babel-types "^6.26.0"
|
917
|
+
babylon "^6.18.0"
|
918
|
+
convert-source-map "^1.5.0"
|
919
|
+
debug "^2.6.8"
|
920
|
+
json5 "^0.5.1"
|
921
|
+
lodash "^4.17.4"
|
922
|
+
minimatch "^3.0.4"
|
923
|
+
path-is-absolute "^1.0.1"
|
924
|
+
private "^0.1.7"
|
925
|
+
slash "^1.0.0"
|
926
|
+
source-map "^0.5.6"
|
758
927
|
|
759
|
-
babel-
|
760
|
-
version "
|
761
|
-
resolved "https://registry.yarnpkg.com/babel-
|
928
|
+
babel-eslint@^7.1.1:
|
929
|
+
version "7.2.3"
|
930
|
+
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.3.tgz#b2fe2d80126470f5c19442dc757253a897710827"
|
762
931
|
dependencies:
|
763
|
-
babel-
|
764
|
-
babel-
|
932
|
+
babel-code-frame "^6.22.0"
|
933
|
+
babel-traverse "^6.23.1"
|
934
|
+
babel-types "^6.23.0"
|
935
|
+
babylon "^6.17.0"
|
765
936
|
|
766
|
-
babel-
|
937
|
+
babel-generator@^6.26.0:
|
767
938
|
version "6.26.0"
|
768
|
-
resolved "https://registry.yarnpkg.com/babel-
|
939
|
+
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.0.tgz#ac1ae20070b79f6e3ca1d3269613053774f20dc5"
|
769
940
|
dependencies:
|
941
|
+
babel-messages "^6.23.0"
|
770
942
|
babel-runtime "^6.26.0"
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
dependencies:
|
778
|
-
babel-plugin-check-es2015-constants "^6.22.0"
|
779
|
-
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
|
780
|
-
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
|
781
|
-
babel-plugin-transform-es2015-block-scoping "^6.24.1"
|
782
|
-
babel-plugin-transform-es2015-classes "^6.24.1"
|
783
|
-
babel-plugin-transform-es2015-computed-properties "^6.24.1"
|
784
|
-
babel-plugin-transform-es2015-destructuring "^6.22.0"
|
785
|
-
babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
|
786
|
-
babel-plugin-transform-es2015-for-of "^6.22.0"
|
787
|
-
babel-plugin-transform-es2015-function-name "^6.24.1"
|
788
|
-
babel-plugin-transform-es2015-literals "^6.22.0"
|
789
|
-
babel-plugin-transform-es2015-modules-amd "^6.24.1"
|
790
|
-
babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
|
791
|
-
babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
|
792
|
-
babel-plugin-transform-es2015-modules-umd "^6.24.1"
|
793
|
-
babel-plugin-transform-es2015-object-super "^6.24.1"
|
794
|
-
babel-plugin-transform-es2015-parameters "^6.24.1"
|
795
|
-
babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
|
796
|
-
babel-plugin-transform-es2015-spread "^6.22.0"
|
797
|
-
babel-plugin-transform-es2015-sticky-regex "^6.24.1"
|
798
|
-
babel-plugin-transform-es2015-template-literals "^6.22.0"
|
799
|
-
babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
|
800
|
-
babel-plugin-transform-es2015-unicode-regex "^6.24.1"
|
801
|
-
babel-plugin-transform-regenerator "^6.24.1"
|
802
|
-
|
803
|
-
babel-preset-flow@^6.23.0:
|
804
|
-
version "6.23.0"
|
805
|
-
resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
|
806
|
-
dependencies:
|
807
|
-
babel-plugin-transform-flow-strip-types "^6.22.0"
|
943
|
+
babel-types "^6.26.0"
|
944
|
+
detect-indent "^4.0.0"
|
945
|
+
jsesc "^1.3.0"
|
946
|
+
lodash "^4.17.4"
|
947
|
+
source-map "^0.5.6"
|
948
|
+
trim-right "^1.0.1"
|
808
949
|
|
809
|
-
babel-
|
950
|
+
babel-helpers@^6.24.1:
|
810
951
|
version "6.24.1"
|
811
|
-
resolved "https://registry.yarnpkg.com/babel-
|
952
|
+
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
|
812
953
|
dependencies:
|
813
|
-
babel-
|
814
|
-
babel-
|
815
|
-
babel-plugin-transform-react-jsx "^6.24.1"
|
816
|
-
babel-plugin-transform-react-jsx-self "^6.22.0"
|
817
|
-
babel-plugin-transform-react-jsx-source "^6.22.0"
|
818
|
-
babel-preset-flow "^6.23.0"
|
954
|
+
babel-runtime "^6.22.0"
|
955
|
+
babel-template "^6.24.1"
|
819
956
|
|
820
|
-
babel-
|
821
|
-
version "
|
822
|
-
resolved "https://registry.yarnpkg.com/babel-
|
957
|
+
babel-loader@^8.0.2:
|
958
|
+
version "8.0.2"
|
959
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.2.tgz#2079b8ec1628284a929241da3d90f5b3de2a5ae5"
|
823
960
|
dependencies:
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
961
|
+
find-cache-dir "^1.0.0"
|
962
|
+
loader-utils "^1.0.2"
|
963
|
+
mkdirp "^0.5.1"
|
964
|
+
util.promisify "^1.0.0"
|
828
965
|
|
829
|
-
babel-
|
830
|
-
version "6.
|
831
|
-
resolved "https://registry.yarnpkg.com/babel-
|
966
|
+
babel-messages@^6.23.0:
|
967
|
+
version "6.23.0"
|
968
|
+
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
832
969
|
dependencies:
|
833
|
-
babel-
|
834
|
-
babel-plugin-transform-async-generator-functions "^6.24.1"
|
835
|
-
babel-plugin-transform-async-to-generator "^6.24.1"
|
836
|
-
babel-plugin-transform-exponentiation-operator "^6.24.1"
|
837
|
-
babel-plugin-transform-object-rest-spread "^6.22.0"
|
970
|
+
babel-runtime "^6.22.0"
|
838
971
|
|
839
|
-
babel-register@^6.26.0
|
972
|
+
babel-register@^6.26.0:
|
840
973
|
version "6.26.0"
|
841
974
|
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
|
842
975
|
dependencies:
|
@@ -848,19 +981,20 @@ babel-register@^6.26.0, babel-register@^6.3.13:
|
|
848
981
|
mkdirp "^0.5.1"
|
849
982
|
source-map-support "^0.4.15"
|
850
983
|
|
851
|
-
babel-runtime@^6.
|
984
|
+
babel-runtime@^6.22.0, babel-runtime@^6.26.0:
|
852
985
|
version "6.26.0"
|
853
986
|
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
854
987
|
dependencies:
|
855
988
|
core-js "^2.4.0"
|
856
989
|
regenerator-runtime "^0.11.0"
|
857
990
|
|
858
|
-
babel-tape-runner@^
|
859
|
-
version "
|
860
|
-
resolved "https://registry.yarnpkg.com/babel-tape-runner/-/babel-tape-runner-
|
991
|
+
babel-tape-runner@^3.0.0:
|
992
|
+
version "3.0.0"
|
993
|
+
resolved "https://registry.yarnpkg.com/babel-tape-runner/-/babel-tape-runner-3.0.0.tgz#d19c7465fd266d4fc2fa16e156c0eb22ce8dc632"
|
861
994
|
dependencies:
|
862
|
-
babel
|
863
|
-
babel
|
995
|
+
"@babel/core" "^7.0.0"
|
996
|
+
"@babel/polyfill" "^7.0.0"
|
997
|
+
"@babel/register" "^7.0.0"
|
864
998
|
glob "^6.0.1"
|
865
999
|
|
866
1000
|
babel-template@^6.24.1, babel-template@^6.26.0:
|
@@ -873,7 +1007,7 @@ babel-template@^6.24.1, babel-template@^6.26.0:
|
|
873
1007
|
babylon "^6.18.0"
|
874
1008
|
lodash "^4.17.4"
|
875
1009
|
|
876
|
-
babel-traverse@^6.23.1, babel-traverse@^6.
|
1010
|
+
babel-traverse@^6.23.1, babel-traverse@^6.26.0:
|
877
1011
|
version "6.26.0"
|
878
1012
|
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
|
879
1013
|
dependencies:
|
@@ -887,7 +1021,7 @@ babel-traverse@^6.23.1, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
|
|
887
1021
|
invariant "^2.2.2"
|
888
1022
|
lodash "^4.17.4"
|
889
1023
|
|
890
|
-
babel-types@^6.
|
1024
|
+
babel-types@^6.23.0, babel-types@^6.26.0:
|
891
1025
|
version "6.26.0"
|
892
1026
|
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
|
893
1027
|
dependencies:
|
@@ -915,6 +1049,18 @@ base64-js@^1.0.2:
|
|
915
1049
|
version "1.2.1"
|
916
1050
|
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886"
|
917
1051
|
|
1052
|
+
base@^0.11.1:
|
1053
|
+
version "0.11.2"
|
1054
|
+
resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
|
1055
|
+
dependencies:
|
1056
|
+
cache-base "^1.0.1"
|
1057
|
+
class-utils "^0.3.5"
|
1058
|
+
component-emitter "^1.2.1"
|
1059
|
+
define-property "^1.0.0"
|
1060
|
+
isobject "^3.0.1"
|
1061
|
+
mixin-deep "^1.2.0"
|
1062
|
+
pascalcase "^0.1.1"
|
1063
|
+
|
918
1064
|
bcrypt-pbkdf@^1.0.0:
|
919
1065
|
version "1.0.1"
|
920
1066
|
resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
|
@@ -952,8 +1098,8 @@ boom@2.x.x:
|
|
952
1098
|
hoek "2.x.x"
|
953
1099
|
|
954
1100
|
brace-expansion@^1.1.7:
|
955
|
-
version "1.1.
|
956
|
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.
|
1101
|
+
version "1.1.11"
|
1102
|
+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
|
957
1103
|
dependencies:
|
958
1104
|
balanced-match "^1.0.0"
|
959
1105
|
concat-map "0.0.1"
|
@@ -966,6 +1112,21 @@ braces@^1.8.2:
|
|
966
1112
|
preserve "^0.2.0"
|
967
1113
|
repeat-element "^1.1.2"
|
968
1114
|
|
1115
|
+
braces@^2.3.0, braces@^2.3.1:
|
1116
|
+
version "2.3.2"
|
1117
|
+
resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
|
1118
|
+
dependencies:
|
1119
|
+
arr-flatten "^1.1.0"
|
1120
|
+
array-unique "^0.3.2"
|
1121
|
+
extend-shallow "^2.0.1"
|
1122
|
+
fill-range "^4.0.0"
|
1123
|
+
isobject "^3.0.1"
|
1124
|
+
repeat-element "^1.1.2"
|
1125
|
+
snapdragon "^0.8.1"
|
1126
|
+
snapdragon-node "^2.0.1"
|
1127
|
+
split-string "^3.0.2"
|
1128
|
+
to-regex "^3.0.1"
|
1129
|
+
|
969
1130
|
brorand@^1.0.1:
|
970
1131
|
version "1.1.0"
|
971
1132
|
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
@@ -1022,6 +1183,18 @@ browserify-zlib@^0.1.4:
|
|
1022
1183
|
dependencies:
|
1023
1184
|
pako "~0.2.0"
|
1024
1185
|
|
1186
|
+
browserslist@^4.1.0:
|
1187
|
+
version "4.1.1"
|
1188
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.1.1.tgz#328eb4ff1215b12df6589e9ab82f8adaa4fc8cd6"
|
1189
|
+
dependencies:
|
1190
|
+
caniuse-lite "^1.0.30000884"
|
1191
|
+
electron-to-chromium "^1.3.62"
|
1192
|
+
node-releases "^1.0.0-alpha.11"
|
1193
|
+
|
1194
|
+
buffer-from@^1.0.0:
|
1195
|
+
version "1.1.1"
|
1196
|
+
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
1197
|
+
|
1025
1198
|
buffer-xor@^1.0.3:
|
1026
1199
|
version "1.0.3"
|
1027
1200
|
resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
|
@@ -1042,6 +1215,20 @@ builtin-status-codes@^3.0.0:
|
|
1042
1215
|
version "3.0.0"
|
1043
1216
|
resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
|
1044
1217
|
|
1218
|
+
cache-base@^1.0.1:
|
1219
|
+
version "1.0.1"
|
1220
|
+
resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
|
1221
|
+
dependencies:
|
1222
|
+
collection-visit "^1.0.0"
|
1223
|
+
component-emitter "^1.2.1"
|
1224
|
+
get-value "^2.0.6"
|
1225
|
+
has-value "^1.0.0"
|
1226
|
+
isobject "^3.0.1"
|
1227
|
+
set-value "^2.0.0"
|
1228
|
+
to-object-path "^0.3.0"
|
1229
|
+
union-value "^1.0.0"
|
1230
|
+
unset-value "^1.0.0"
|
1231
|
+
|
1045
1232
|
caller-path@^0.1.0:
|
1046
1233
|
version "0.1.0"
|
1047
1234
|
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
|
@@ -1060,6 +1247,10 @@ camelcase@^4.1.0:
|
|
1060
1247
|
version "4.1.0"
|
1061
1248
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd"
|
1062
1249
|
|
1250
|
+
caniuse-lite@^1.0.30000884:
|
1251
|
+
version "1.0.30000885"
|
1252
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000885.tgz#e889e9f8e7e50e769f2a49634c932b8aee622984"
|
1253
|
+
|
1063
1254
|
caseless@~0.12.0:
|
1064
1255
|
version "0.12.0"
|
1065
1256
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
|
@@ -1081,7 +1272,15 @@ chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
|
|
1081
1272
|
strip-ansi "^3.0.0"
|
1082
1273
|
supports-color "^2.0.0"
|
1083
1274
|
|
1084
|
-
|
1275
|
+
chalk@^2.0.0:
|
1276
|
+
version "2.4.1"
|
1277
|
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
|
1278
|
+
dependencies:
|
1279
|
+
ansi-styles "^3.2.1"
|
1280
|
+
escape-string-regexp "^1.0.5"
|
1281
|
+
supports-color "^5.3.0"
|
1282
|
+
|
1283
|
+
chokidar@^1.7.0:
|
1085
1284
|
version "1.7.0"
|
1086
1285
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
|
1087
1286
|
dependencies:
|
@@ -1096,6 +1295,29 @@ chokidar@^1.6.1, chokidar@^1.7.0:
|
|
1096
1295
|
optionalDependencies:
|
1097
1296
|
fsevents "^1.0.0"
|
1098
1297
|
|
1298
|
+
chokidar@^2.0.3:
|
1299
|
+
version "2.0.4"
|
1300
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz#356ff4e2b0e8e43e322d18a372460bbcf3accd26"
|
1301
|
+
dependencies:
|
1302
|
+
anymatch "^2.0.0"
|
1303
|
+
async-each "^1.0.0"
|
1304
|
+
braces "^2.3.0"
|
1305
|
+
glob-parent "^3.1.0"
|
1306
|
+
inherits "^2.0.1"
|
1307
|
+
is-binary-path "^1.0.0"
|
1308
|
+
is-glob "^4.0.0"
|
1309
|
+
lodash.debounce "^4.0.8"
|
1310
|
+
normalize-path "^2.1.1"
|
1311
|
+
path-is-absolute "^1.0.0"
|
1312
|
+
readdirp "^2.0.0"
|
1313
|
+
upath "^1.0.5"
|
1314
|
+
optionalDependencies:
|
1315
|
+
fsevents "^1.2.2"
|
1316
|
+
|
1317
|
+
chownr@^1.0.1:
|
1318
|
+
version "1.0.1"
|
1319
|
+
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
|
1320
|
+
|
1099
1321
|
cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
|
1100
1322
|
version "1.0.4"
|
1101
1323
|
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
|
@@ -1107,6 +1329,15 @@ circular-json@^0.3.1:
|
|
1107
1329
|
version "0.3.3"
|
1108
1330
|
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66"
|
1109
1331
|
|
1332
|
+
class-utils@^0.3.5:
|
1333
|
+
version "0.3.6"
|
1334
|
+
resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
|
1335
|
+
dependencies:
|
1336
|
+
arr-union "^3.1.0"
|
1337
|
+
define-property "^0.2.5"
|
1338
|
+
isobject "^3.0.0"
|
1339
|
+
static-extend "^0.1.1"
|
1340
|
+
|
1110
1341
|
cli-cursor@^1.0.1:
|
1111
1342
|
version "1.0.2"
|
1112
1343
|
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
|
@@ -1147,20 +1378,41 @@ code-point-at@^1.0.0:
|
|
1147
1378
|
version "1.1.0"
|
1148
1379
|
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
|
1149
1380
|
|
1381
|
+
collection-visit@^1.0.0:
|
1382
|
+
version "1.0.0"
|
1383
|
+
resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
|
1384
|
+
dependencies:
|
1385
|
+
map-visit "^1.0.0"
|
1386
|
+
object-visit "^1.0.0"
|
1387
|
+
|
1388
|
+
color-convert@^1.9.0:
|
1389
|
+
version "1.9.3"
|
1390
|
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
|
1391
|
+
dependencies:
|
1392
|
+
color-name "1.1.3"
|
1393
|
+
|
1394
|
+
color-name@1.1.3:
|
1395
|
+
version "1.1.3"
|
1396
|
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
|
1397
|
+
|
1150
1398
|
combined-stream@^1.0.5, combined-stream@~1.0.5:
|
1151
1399
|
version "1.0.5"
|
1152
1400
|
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009"
|
1153
1401
|
dependencies:
|
1154
1402
|
delayed-stream "~1.0.0"
|
1155
1403
|
|
1156
|
-
commander@^2.
|
1157
|
-
version "2.
|
1158
|
-
resolved "https://registry.yarnpkg.com/commander/-/commander-2.
|
1404
|
+
commander@^2.8.1:
|
1405
|
+
version "2.18.0"
|
1406
|
+
resolved "https://registry.yarnpkg.com/commander/-/commander-2.18.0.tgz#2bf063ddee7c7891176981a2cc798e5754bc6970"
|
1159
1407
|
|
1160
1408
|
commondir@^1.0.1:
|
1161
1409
|
version "1.0.1"
|
1162
1410
|
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
|
1163
1411
|
|
1412
|
+
component-emitter@^1.2.1:
|
1413
|
+
version "1.2.1"
|
1414
|
+
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
|
1415
|
+
|
1164
1416
|
concat-map@0.0.1:
|
1165
1417
|
version "0.0.1"
|
1166
1418
|
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
|
@@ -1195,10 +1447,20 @@ content-type-parser@^1.0.1:
|
|
1195
1447
|
version "1.0.1"
|
1196
1448
|
resolved "https://registry.yarnpkg.com/content-type-parser/-/content-type-parser-1.0.1.tgz#c3e56988c53c65127fb46d4032a3a900246fdc94"
|
1197
1449
|
|
1450
|
+
convert-source-map@^1.1.0:
|
1451
|
+
version "1.6.0"
|
1452
|
+
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
|
1453
|
+
dependencies:
|
1454
|
+
safe-buffer "~5.1.1"
|
1455
|
+
|
1198
1456
|
convert-source-map@^1.5.0:
|
1199
1457
|
version "1.5.0"
|
1200
1458
|
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
|
1201
1459
|
|
1460
|
+
copy-descriptor@^0.1.0:
|
1461
|
+
version "0.1.1"
|
1462
|
+
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
1463
|
+
|
1202
1464
|
core-js@^1.0.0:
|
1203
1465
|
version "1.2.7"
|
1204
1466
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
|
@@ -1207,6 +1469,10 @@ core-js@^2.4.0, core-js@^2.5.0:
|
|
1207
1469
|
version "2.5.1"
|
1208
1470
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
|
1209
1471
|
|
1472
|
+
core-js@^2.5.7:
|
1473
|
+
version "2.5.7"
|
1474
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
|
1475
|
+
|
1210
1476
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
1211
1477
|
version "1.0.2"
|
1212
1478
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
@@ -1311,14 +1577,34 @@ debug@2, debug@^2.1.1, debug@^2.2.0, debug@^2.6.8:
|
|
1311
1577
|
dependencies:
|
1312
1578
|
ms "2.0.0"
|
1313
1579
|
|
1580
|
+
debug@^2.1.2, debug@^2.3.3:
|
1581
|
+
version "2.6.9"
|
1582
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
1583
|
+
dependencies:
|
1584
|
+
ms "2.0.0"
|
1585
|
+
|
1586
|
+
debug@^3.1.0:
|
1587
|
+
version "3.1.0"
|
1588
|
+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
|
1589
|
+
dependencies:
|
1590
|
+
ms "2.0.0"
|
1591
|
+
|
1314
1592
|
decamelize@^1.0.0, decamelize@^1.1.1:
|
1315
1593
|
version "1.2.0"
|
1316
1594
|
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
1317
1595
|
|
1596
|
+
decode-uri-component@^0.2.0:
|
1597
|
+
version "0.2.0"
|
1598
|
+
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
|
1599
|
+
|
1318
1600
|
deep-equal@~1.0.1:
|
1319
1601
|
version "1.0.1"
|
1320
1602
|
resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5"
|
1321
1603
|
|
1604
|
+
deep-extend@^0.6.0:
|
1605
|
+
version "0.6.0"
|
1606
|
+
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
|
1607
|
+
|
1322
1608
|
deep-extend@~0.4.0:
|
1323
1609
|
version "0.4.2"
|
1324
1610
|
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f"
|
@@ -1334,6 +1620,25 @@ define-properties@^1.1.2:
|
|
1334
1620
|
foreach "^2.0.5"
|
1335
1621
|
object-keys "^1.0.8"
|
1336
1622
|
|
1623
|
+
define-property@^0.2.5:
|
1624
|
+
version "0.2.5"
|
1625
|
+
resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
|
1626
|
+
dependencies:
|
1627
|
+
is-descriptor "^0.1.0"
|
1628
|
+
|
1629
|
+
define-property@^1.0.0:
|
1630
|
+
version "1.0.0"
|
1631
|
+
resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
|
1632
|
+
dependencies:
|
1633
|
+
is-descriptor "^1.0.0"
|
1634
|
+
|
1635
|
+
define-property@^2.0.2:
|
1636
|
+
version "2.0.2"
|
1637
|
+
resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
|
1638
|
+
dependencies:
|
1639
|
+
is-descriptor "^1.0.2"
|
1640
|
+
isobject "^3.0.1"
|
1641
|
+
|
1337
1642
|
defined@~1.0.0:
|
1338
1643
|
version "1.0.0"
|
1339
1644
|
resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
|
@@ -1371,6 +1676,10 @@ detect-indent@^4.0.0:
|
|
1371
1676
|
dependencies:
|
1372
1677
|
repeating "^2.0.0"
|
1373
1678
|
|
1679
|
+
detect-libc@^1.0.2:
|
1680
|
+
version "1.0.3"
|
1681
|
+
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
|
1682
|
+
|
1374
1683
|
diffie-hellman@^5.0.0:
|
1375
1684
|
version "5.0.2"
|
1376
1685
|
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
|
@@ -1411,6 +1720,10 @@ ecc-jsbn@~0.1.1:
|
|
1411
1720
|
dependencies:
|
1412
1721
|
jsbn "~0.1.0"
|
1413
1722
|
|
1723
|
+
electron-to-chromium@^1.3.62:
|
1724
|
+
version "1.3.64"
|
1725
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.64.tgz#39f5a93bf84ab7e10cfbb7522ccfc3f1feb756cf"
|
1726
|
+
|
1414
1727
|
elliptic@^6.0.0:
|
1415
1728
|
version "6.4.0"
|
1416
1729
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
|
@@ -1468,6 +1781,16 @@ es-abstract@^1.5.0, es-abstract@^1.7.0:
|
|
1468
1781
|
is-callable "^1.1.3"
|
1469
1782
|
is-regex "^1.0.4"
|
1470
1783
|
|
1784
|
+
es-abstract@^1.5.1:
|
1785
|
+
version "1.12.0"
|
1786
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165"
|
1787
|
+
dependencies:
|
1788
|
+
es-to-primitive "^1.1.1"
|
1789
|
+
function-bind "^1.1.1"
|
1790
|
+
has "^1.0.1"
|
1791
|
+
is-callable "^1.1.3"
|
1792
|
+
is-regex "^1.0.4"
|
1793
|
+
|
1471
1794
|
es-to-primitive@^1.1.1:
|
1472
1795
|
version "1.1.1"
|
1473
1796
|
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.1.1.tgz#45355248a88979034b6792e19bb81f2b7975dd0d"
|
@@ -1697,7 +2020,7 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0:
|
|
1697
2020
|
version "4.2.0"
|
1698
2021
|
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
|
1699
2022
|
|
1700
|
-
esutils@^2.0.2:
|
2023
|
+
esutils@^2.0.0, esutils@^2.0.2:
|
1701
2024
|
version "2.0.2"
|
1702
2025
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
1703
2026
|
|
@@ -1741,12 +2064,37 @@ expand-brackets@^0.1.4:
|
|
1741
2064
|
dependencies:
|
1742
2065
|
is-posix-bracket "^0.1.0"
|
1743
2066
|
|
2067
|
+
expand-brackets@^2.1.4:
|
2068
|
+
version "2.1.4"
|
2069
|
+
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
|
2070
|
+
dependencies:
|
2071
|
+
debug "^2.3.3"
|
2072
|
+
define-property "^0.2.5"
|
2073
|
+
extend-shallow "^2.0.1"
|
2074
|
+
posix-character-classes "^0.1.0"
|
2075
|
+
regex-not "^1.0.0"
|
2076
|
+
snapdragon "^0.8.1"
|
2077
|
+
to-regex "^3.0.1"
|
2078
|
+
|
1744
2079
|
expand-range@^1.8.1:
|
1745
2080
|
version "1.8.2"
|
1746
2081
|
resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
|
1747
2082
|
dependencies:
|
1748
2083
|
fill-range "^2.1.0"
|
1749
2084
|
|
2085
|
+
extend-shallow@^2.0.1:
|
2086
|
+
version "2.0.1"
|
2087
|
+
resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
|
2088
|
+
dependencies:
|
2089
|
+
is-extendable "^0.1.0"
|
2090
|
+
|
2091
|
+
extend-shallow@^3.0.0, extend-shallow@^3.0.2:
|
2092
|
+
version "3.0.2"
|
2093
|
+
resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
|
2094
|
+
dependencies:
|
2095
|
+
assign-symbols "^1.0.0"
|
2096
|
+
is-extendable "^1.0.1"
|
2097
|
+
|
1750
2098
|
extend@3, extend@~3.0.0:
|
1751
2099
|
version "3.0.1"
|
1752
2100
|
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444"
|
@@ -1765,6 +2113,19 @@ extglob@^0.3.1:
|
|
1765
2113
|
dependencies:
|
1766
2114
|
is-extglob "^1.0.0"
|
1767
2115
|
|
2116
|
+
extglob@^2.0.4:
|
2117
|
+
version "2.0.4"
|
2118
|
+
resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
|
2119
|
+
dependencies:
|
2120
|
+
array-unique "^0.3.2"
|
2121
|
+
define-property "^1.0.0"
|
2122
|
+
expand-brackets "^2.1.4"
|
2123
|
+
extend-shallow "^2.0.1"
|
2124
|
+
fragment-cache "^0.2.1"
|
2125
|
+
regex-not "^1.0.0"
|
2126
|
+
snapdragon "^0.8.1"
|
2127
|
+
to-regex "^3.0.1"
|
2128
|
+
|
1768
2129
|
extsprintf@1.3.0, extsprintf@^1.2.0:
|
1769
2130
|
version "1.3.0"
|
1770
2131
|
resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
|
@@ -1823,6 +2184,15 @@ fill-range@^2.1.0:
|
|
1823
2184
|
repeat-element "^1.1.2"
|
1824
2185
|
repeat-string "^1.5.2"
|
1825
2186
|
|
2187
|
+
fill-range@^4.0.0:
|
2188
|
+
version "4.0.0"
|
2189
|
+
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
|
2190
|
+
dependencies:
|
2191
|
+
extend-shallow "^2.0.1"
|
2192
|
+
is-number "^3.0.0"
|
2193
|
+
repeat-string "^1.6.1"
|
2194
|
+
to-regex-range "^2.1.0"
|
2195
|
+
|
1826
2196
|
find-cache-dir@^1.0.0:
|
1827
2197
|
version "1.0.0"
|
1828
2198
|
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
|
@@ -1870,7 +2240,7 @@ for-each@~0.3.2:
|
|
1870
2240
|
dependencies:
|
1871
2241
|
is-function "~1.0.0"
|
1872
2242
|
|
1873
|
-
for-in@^1.0.1:
|
2243
|
+
for-in@^1.0.1, for-in@^1.0.2:
|
1874
2244
|
version "1.0.2"
|
1875
2245
|
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
|
1876
2246
|
|
@@ -1896,6 +2266,12 @@ form-data@~2.1.1:
|
|
1896
2266
|
combined-stream "^1.0.5"
|
1897
2267
|
mime-types "^2.1.12"
|
1898
2268
|
|
2269
|
+
fragment-cache@^0.2.1:
|
2270
|
+
version "0.2.1"
|
2271
|
+
resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
|
2272
|
+
dependencies:
|
2273
|
+
map-cache "^0.2.2"
|
2274
|
+
|
1899
2275
|
fs-extra@^0.30.0:
|
1900
2276
|
version "0.30.0"
|
1901
2277
|
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
|
@@ -1906,9 +2282,15 @@ fs-extra@^0.30.0:
|
|
1906
2282
|
path-is-absolute "^1.0.0"
|
1907
2283
|
rimraf "^2.2.8"
|
1908
2284
|
|
1909
|
-
fs-
|
1910
|
-
version "1.
|
1911
|
-
resolved "https://registry.yarnpkg.com/fs-
|
2285
|
+
fs-minipass@^1.2.5:
|
2286
|
+
version "1.2.5"
|
2287
|
+
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
|
2288
|
+
dependencies:
|
2289
|
+
minipass "^2.2.1"
|
2290
|
+
|
2291
|
+
fs-readdir-recursive@^1.1.0:
|
2292
|
+
version "1.1.0"
|
2293
|
+
resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
|
1912
2294
|
|
1913
2295
|
fs.realpath@^1.0.0:
|
1914
2296
|
version "1.0.0"
|
@@ -1921,6 +2303,13 @@ fsevents@^1.0.0:
|
|
1921
2303
|
nan "^2.3.0"
|
1922
2304
|
node-pre-gyp "^0.6.36"
|
1923
2305
|
|
2306
|
+
fsevents@^1.2.2:
|
2307
|
+
version "1.2.4"
|
2308
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426"
|
2309
|
+
dependencies:
|
2310
|
+
nan "^2.9.2"
|
2311
|
+
node-pre-gyp "^0.10.0"
|
2312
|
+
|
1924
2313
|
fstream-ignore@^1.0.5:
|
1925
2314
|
version "1.0.5"
|
1926
2315
|
resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105"
|
@@ -1973,6 +2362,10 @@ get-stream@^3.0.0:
|
|
1973
2362
|
version "3.0.0"
|
1974
2363
|
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
|
1975
2364
|
|
2365
|
+
get-value@^2.0.3, get-value@^2.0.6:
|
2366
|
+
version "2.0.6"
|
2367
|
+
resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
|
2368
|
+
|
1976
2369
|
getpass@^0.1.1:
|
1977
2370
|
version "0.1.7"
|
1978
2371
|
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
|
@@ -2001,6 +2394,13 @@ glob-parent@^2.0.0:
|
|
2001
2394
|
dependencies:
|
2002
2395
|
is-glob "^2.0.0"
|
2003
2396
|
|
2397
|
+
glob-parent@^3.1.0:
|
2398
|
+
version "3.1.0"
|
2399
|
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
|
2400
|
+
dependencies:
|
2401
|
+
is-glob "^3.1.0"
|
2402
|
+
path-dirname "^1.0.0"
|
2403
|
+
|
2004
2404
|
glob@7.1.1:
|
2005
2405
|
version "7.1.1"
|
2006
2406
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8"
|
@@ -2022,7 +2422,7 @@ glob@^6.0.1:
|
|
2022
2422
|
once "^1.3.0"
|
2023
2423
|
path-is-absolute "^1.0.0"
|
2024
2424
|
|
2025
|
-
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob
|
2425
|
+
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.2:
|
2026
2426
|
version "7.1.2"
|
2027
2427
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
2028
2428
|
dependencies:
|
@@ -2040,6 +2440,10 @@ global@^4.3.0:
|
|
2040
2440
|
min-document "^2.19.0"
|
2041
2441
|
process "~0.5.1"
|
2042
2442
|
|
2443
|
+
globals@^11.1.0:
|
2444
|
+
version "11.7.0"
|
2445
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673"
|
2446
|
+
|
2043
2447
|
globals@^9.14.0, globals@^9.18.0:
|
2044
2448
|
version "9.18.0"
|
2045
2449
|
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
|
@@ -2055,7 +2459,7 @@ globby@^5.0.0:
|
|
2055
2459
|
pify "^2.0.0"
|
2056
2460
|
pinkie-promise "^2.0.0"
|
2057
2461
|
|
2058
|
-
graceful-fs@4.1.11, graceful-fs@^4.1.
|
2462
|
+
graceful-fs@4.1.11, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
|
2059
2463
|
version "4.1.11"
|
2060
2464
|
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
|
2061
2465
|
|
@@ -2074,15 +2478,46 @@ has-ansi@^2.0.0:
|
|
2074
2478
|
version "2.0.0"
|
2075
2479
|
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
|
2076
2480
|
dependencies:
|
2077
|
-
ansi-regex "^2.0.0"
|
2481
|
+
ansi-regex "^2.0.0"
|
2482
|
+
|
2483
|
+
has-flag@^2.0.0:
|
2484
|
+
version "2.0.0"
|
2485
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
|
2486
|
+
|
2487
|
+
has-flag@^3.0.0:
|
2488
|
+
version "3.0.0"
|
2489
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
2490
|
+
|
2491
|
+
has-unicode@^2.0.0:
|
2492
|
+
version "2.0.1"
|
2493
|
+
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
2494
|
+
|
2495
|
+
has-value@^0.3.1:
|
2496
|
+
version "0.3.1"
|
2497
|
+
resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
|
2498
|
+
dependencies:
|
2499
|
+
get-value "^2.0.3"
|
2500
|
+
has-values "^0.1.4"
|
2501
|
+
isobject "^2.0.0"
|
2502
|
+
|
2503
|
+
has-value@^1.0.0:
|
2504
|
+
version "1.0.0"
|
2505
|
+
resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
|
2506
|
+
dependencies:
|
2507
|
+
get-value "^2.0.6"
|
2508
|
+
has-values "^1.0.0"
|
2509
|
+
isobject "^3.0.0"
|
2078
2510
|
|
2079
|
-
has-
|
2080
|
-
version "
|
2081
|
-
resolved "https://registry.yarnpkg.com/has-
|
2511
|
+
has-values@^0.1.4:
|
2512
|
+
version "0.1.4"
|
2513
|
+
resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
|
2082
2514
|
|
2083
|
-
has-
|
2084
|
-
version "
|
2085
|
-
resolved "https://registry.yarnpkg.com/has-
|
2515
|
+
has-values@^1.0.0:
|
2516
|
+
version "1.0.0"
|
2517
|
+
resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
|
2518
|
+
dependencies:
|
2519
|
+
is-number "^3.0.0"
|
2520
|
+
kind-of "^4.0.0"
|
2086
2521
|
|
2087
2522
|
has@^1.0.1, has@~1.0.1:
|
2088
2523
|
version "1.0.1"
|
@@ -2138,6 +2573,10 @@ home-or-tmp@^2.0.0:
|
|
2138
2573
|
os-homedir "^1.0.0"
|
2139
2574
|
os-tmpdir "^1.0.1"
|
2140
2575
|
|
2576
|
+
home-or-tmp@^3.0.0:
|
2577
|
+
version "3.0.0"
|
2578
|
+
resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-3.0.0.tgz#57a8fe24cf33cdd524860a15821ddc25c86671fb"
|
2579
|
+
|
2141
2580
|
hosted-git-info@^2.1.4:
|
2142
2581
|
version "2.5.0"
|
2143
2582
|
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c"
|
@@ -2176,10 +2615,22 @@ iconv-lite@^0.4.17, iconv-lite@~0.4.13:
|
|
2176
2615
|
version "0.4.19"
|
2177
2616
|
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
|
2178
2617
|
|
2618
|
+
iconv-lite@^0.4.4:
|
2619
|
+
version "0.4.24"
|
2620
|
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
|
2621
|
+
dependencies:
|
2622
|
+
safer-buffer ">= 2.1.2 < 3"
|
2623
|
+
|
2179
2624
|
ieee754@^1.1.4:
|
2180
2625
|
version "1.1.8"
|
2181
2626
|
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"
|
2182
2627
|
|
2628
|
+
ignore-walk@^3.0.1:
|
2629
|
+
version "3.0.1"
|
2630
|
+
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
|
2631
|
+
dependencies:
|
2632
|
+
minimatch "^3.0.4"
|
2633
|
+
|
2183
2634
|
ignore@^3.2.0:
|
2184
2635
|
version "3.3.5"
|
2185
2636
|
resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.5.tgz#c4e715455f6073a8d7e5dae72d2fc9d71663dba6"
|
@@ -2261,6 +2712,18 @@ invert-kv@^1.0.0:
|
|
2261
2712
|
version "1.0.0"
|
2262
2713
|
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
|
2263
2714
|
|
2715
|
+
is-accessor-descriptor@^0.1.6:
|
2716
|
+
version "0.1.6"
|
2717
|
+
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
|
2718
|
+
dependencies:
|
2719
|
+
kind-of "^3.0.2"
|
2720
|
+
|
2721
|
+
is-accessor-descriptor@^1.0.0:
|
2722
|
+
version "1.0.0"
|
2723
|
+
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
|
2724
|
+
dependencies:
|
2725
|
+
kind-of "^6.0.0"
|
2726
|
+
|
2264
2727
|
is-arrayish@^0.2.1:
|
2265
2728
|
version "0.2.1"
|
2266
2729
|
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
@@ -2285,10 +2748,38 @@ is-callable@^1.1.1, is-callable@^1.1.3:
|
|
2285
2748
|
version "1.1.3"
|
2286
2749
|
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
2287
2750
|
|
2751
|
+
is-data-descriptor@^0.1.4:
|
2752
|
+
version "0.1.4"
|
2753
|
+
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
|
2754
|
+
dependencies:
|
2755
|
+
kind-of "^3.0.2"
|
2756
|
+
|
2757
|
+
is-data-descriptor@^1.0.0:
|
2758
|
+
version "1.0.0"
|
2759
|
+
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
|
2760
|
+
dependencies:
|
2761
|
+
kind-of "^6.0.0"
|
2762
|
+
|
2288
2763
|
is-date-object@^1.0.1:
|
2289
2764
|
version "1.0.1"
|
2290
2765
|
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"
|
2291
2766
|
|
2767
|
+
is-descriptor@^0.1.0:
|
2768
|
+
version "0.1.6"
|
2769
|
+
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
|
2770
|
+
dependencies:
|
2771
|
+
is-accessor-descriptor "^0.1.6"
|
2772
|
+
is-data-descriptor "^0.1.4"
|
2773
|
+
kind-of "^5.0.0"
|
2774
|
+
|
2775
|
+
is-descriptor@^1.0.0, is-descriptor@^1.0.2:
|
2776
|
+
version "1.0.2"
|
2777
|
+
resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
|
2778
|
+
dependencies:
|
2779
|
+
is-accessor-descriptor "^1.0.0"
|
2780
|
+
is-data-descriptor "^1.0.0"
|
2781
|
+
kind-of "^6.0.2"
|
2782
|
+
|
2292
2783
|
is-dotfile@^1.0.0:
|
2293
2784
|
version "1.0.3"
|
2294
2785
|
resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
|
@@ -2299,14 +2790,24 @@ is-equal-shallow@^0.1.3:
|
|
2299
2790
|
dependencies:
|
2300
2791
|
is-primitive "^2.0.0"
|
2301
2792
|
|
2302
|
-
is-extendable@^0.1.1:
|
2793
|
+
is-extendable@^0.1.0, is-extendable@^0.1.1:
|
2303
2794
|
version "0.1.1"
|
2304
2795
|
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
|
2305
2796
|
|
2797
|
+
is-extendable@^1.0.1:
|
2798
|
+
version "1.0.1"
|
2799
|
+
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
|
2800
|
+
dependencies:
|
2801
|
+
is-plain-object "^2.0.4"
|
2802
|
+
|
2306
2803
|
is-extglob@^1.0.0:
|
2307
2804
|
version "1.0.0"
|
2308
2805
|
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
|
2309
2806
|
|
2807
|
+
is-extglob@^2.1.0, is-extglob@^2.1.1:
|
2808
|
+
version "2.1.1"
|
2809
|
+
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
|
2810
|
+
|
2310
2811
|
is-finite@^1.0.0, is-finite@^1.0.1:
|
2311
2812
|
version "1.0.2"
|
2312
2813
|
resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
|
@@ -2333,6 +2834,18 @@ is-glob@^2.0.0, is-glob@^2.0.1:
|
|
2333
2834
|
dependencies:
|
2334
2835
|
is-extglob "^1.0.0"
|
2335
2836
|
|
2837
|
+
is-glob@^3.1.0:
|
2838
|
+
version "3.1.0"
|
2839
|
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
|
2840
|
+
dependencies:
|
2841
|
+
is-extglob "^2.1.0"
|
2842
|
+
|
2843
|
+
is-glob@^4.0.0:
|
2844
|
+
version "4.0.0"
|
2845
|
+
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0"
|
2846
|
+
dependencies:
|
2847
|
+
is-extglob "^2.1.1"
|
2848
|
+
|
2336
2849
|
is-my-json-valid@^2.10.0:
|
2337
2850
|
version "2.16.1"
|
2338
2851
|
resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.1.tgz#5a846777e2c2620d1e69104e5d3a03b1f6088f11"
|
@@ -2370,6 +2883,16 @@ is-path-inside@^1.0.0:
|
|
2370
2883
|
dependencies:
|
2371
2884
|
path-is-inside "^1.0.1"
|
2372
2885
|
|
2886
|
+
is-plain-obj@^1.1.0:
|
2887
|
+
version "1.1.0"
|
2888
|
+
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
|
2889
|
+
|
2890
|
+
is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
|
2891
|
+
version "2.0.4"
|
2892
|
+
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
|
2893
|
+
dependencies:
|
2894
|
+
isobject "^3.0.1"
|
2895
|
+
|
2373
2896
|
is-posix-bracket@^0.1.0:
|
2374
2897
|
version "0.1.1"
|
2375
2898
|
resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
|
@@ -2410,6 +2933,10 @@ is-typedarray@~1.0.0:
|
|
2410
2933
|
version "1.0.0"
|
2411
2934
|
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
2412
2935
|
|
2936
|
+
is-windows@^1.0.2:
|
2937
|
+
version "1.0.2"
|
2938
|
+
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
|
2939
|
+
|
2413
2940
|
isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
2414
2941
|
version "1.0.0"
|
2415
2942
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
@@ -2424,6 +2951,10 @@ isobject@^2.0.0:
|
|
2424
2951
|
dependencies:
|
2425
2952
|
isarray "1.0.0"
|
2426
2953
|
|
2954
|
+
isobject@^3.0.0, isobject@^3.0.1:
|
2955
|
+
version "3.0.1"
|
2956
|
+
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
|
2957
|
+
|
2427
2958
|
isomorphic-fetch@^2.1.1:
|
2428
2959
|
version "2.2.1"
|
2429
2960
|
resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
|
@@ -2435,10 +2966,18 @@ isstream@~0.1.2:
|
|
2435
2966
|
version "0.1.2"
|
2436
2967
|
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
|
2437
2968
|
|
2969
|
+
js-levenshtein@^1.1.3:
|
2970
|
+
version "1.1.3"
|
2971
|
+
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.3.tgz#3ef627df48ec8cf24bacf05c0f184ff30ef413c5"
|
2972
|
+
|
2438
2973
|
js-tokens@^3.0.0, js-tokens@^3.0.2:
|
2439
2974
|
version "3.0.2"
|
2440
2975
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
2441
2976
|
|
2977
|
+
js-tokens@^4.0.0:
|
2978
|
+
version "4.0.0"
|
2979
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
2980
|
+
|
2442
2981
|
js-yaml@^3.5.1:
|
2443
2982
|
version "3.9.1"
|
2444
2983
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0"
|
@@ -2484,6 +3023,10 @@ jsesc@^1.3.0:
|
|
2484
3023
|
version "1.3.0"
|
2485
3024
|
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
|
2486
3025
|
|
3026
|
+
jsesc@^2.5.1:
|
3027
|
+
version "2.5.1"
|
3028
|
+
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.1.tgz#e421a2a8e20d6b0819df28908f782526b96dd1fe"
|
3029
|
+
|
2487
3030
|
jsesc@~0.5.0:
|
2488
3031
|
version "0.5.0"
|
2489
3032
|
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
@@ -2547,7 +3090,7 @@ jsx-ast-utils@^2.0.0:
|
|
2547
3090
|
dependencies:
|
2548
3091
|
array-includes "^3.0.3"
|
2549
3092
|
|
2550
|
-
kind-of@^3.0.2:
|
3093
|
+
kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
|
2551
3094
|
version "3.2.2"
|
2552
3095
|
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
|
2553
3096
|
dependencies:
|
@@ -2559,6 +3102,14 @@ kind-of@^4.0.0:
|
|
2559
3102
|
dependencies:
|
2560
3103
|
is-buffer "^1.1.5"
|
2561
3104
|
|
3105
|
+
kind-of@^5.0.0:
|
3106
|
+
version "5.1.0"
|
3107
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
|
3108
|
+
|
3109
|
+
kind-of@^6.0.0, kind-of@^6.0.2:
|
3110
|
+
version "6.0.2"
|
3111
|
+
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
|
3112
|
+
|
2562
3113
|
klaw@^1.0.0:
|
2563
3114
|
version "1.3.1"
|
2564
3115
|
resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
|
@@ -2618,6 +3169,10 @@ lodash.cond@^4.3.0:
|
|
2618
3169
|
version "4.5.2"
|
2619
3170
|
resolved "https://registry.yarnpkg.com/lodash.cond/-/lodash.cond-4.5.2.tgz#f471a1da486be60f6ab955d17115523dd1d255d5"
|
2620
3171
|
|
3172
|
+
lodash.debounce@^4.0.8:
|
3173
|
+
version "4.0.8"
|
3174
|
+
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
|
3175
|
+
|
2621
3176
|
lodash.sortby@^4.7.0:
|
2622
3177
|
version "4.7.0"
|
2623
3178
|
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
|
@@ -2630,6 +3185,10 @@ lodash@^3.6.0:
|
|
2630
3185
|
version "3.10.1"
|
2631
3186
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
|
2632
3187
|
|
3188
|
+
lodash@^4.17.10:
|
3189
|
+
version "4.17.10"
|
3190
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
|
3191
|
+
|
2633
3192
|
longest@^1.0.1:
|
2634
3193
|
version "1.0.1"
|
2635
3194
|
resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
|
@@ -2648,10 +3207,20 @@ lru-cache@^4.0.1:
|
|
2648
3207
|
yallist "^2.1.2"
|
2649
3208
|
|
2650
3209
|
make-dir@^1.0.0:
|
3210
|
+
version "1.3.0"
|
3211
|
+
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
|
3212
|
+
dependencies:
|
3213
|
+
pify "^3.0.0"
|
3214
|
+
|
3215
|
+
map-cache@^0.2.2:
|
3216
|
+
version "0.2.2"
|
3217
|
+
resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
|
3218
|
+
|
3219
|
+
map-visit@^1.0.0:
|
2651
3220
|
version "1.0.0"
|
2652
|
-
resolved "https://registry.yarnpkg.com/
|
3221
|
+
resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
|
2653
3222
|
dependencies:
|
2654
|
-
|
3223
|
+
object-visit "^1.0.0"
|
2655
3224
|
|
2656
3225
|
md5.js@^1.3.4:
|
2657
3226
|
version "1.3.4"
|
@@ -2691,6 +3260,24 @@ micromatch@^2.1.5:
|
|
2691
3260
|
parse-glob "^3.0.4"
|
2692
3261
|
regex-cache "^0.4.2"
|
2693
3262
|
|
3263
|
+
micromatch@^3.1.4:
|
3264
|
+
version "3.1.10"
|
3265
|
+
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
|
3266
|
+
dependencies:
|
3267
|
+
arr-diff "^4.0.0"
|
3268
|
+
array-unique "^0.3.2"
|
3269
|
+
braces "^2.3.1"
|
3270
|
+
define-property "^2.0.2"
|
3271
|
+
extend-shallow "^3.0.2"
|
3272
|
+
extglob "^2.0.4"
|
3273
|
+
fragment-cache "^0.2.1"
|
3274
|
+
kind-of "^6.0.2"
|
3275
|
+
nanomatch "^1.2.9"
|
3276
|
+
object.pick "^1.3.0"
|
3277
|
+
regex-not "^1.0.0"
|
3278
|
+
snapdragon "^0.8.1"
|
3279
|
+
to-regex "^3.0.2"
|
3280
|
+
|
2694
3281
|
miller-rabin@^4.0.0:
|
2695
3282
|
version "4.0.0"
|
2696
3283
|
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
|
@@ -2738,12 +3325,32 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
|
2738
3325
|
|
2739
3326
|
minimist@0.0.8:
|
2740
3327
|
version "0.0.8"
|
2741
|
-
resolved "
|
3328
|
+
resolved "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
2742
3329
|
|
2743
3330
|
minimist@1.2.0, minimist@^1.2.0, minimist@~1.2.0:
|
2744
3331
|
version "1.2.0"
|
2745
3332
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
2746
3333
|
|
3334
|
+
minipass@^2.2.1, minipass@^2.3.3:
|
3335
|
+
version "2.3.4"
|
3336
|
+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957"
|
3337
|
+
dependencies:
|
3338
|
+
safe-buffer "^5.1.2"
|
3339
|
+
yallist "^3.0.0"
|
3340
|
+
|
3341
|
+
minizlib@^1.1.0:
|
3342
|
+
version "1.1.0"
|
3343
|
+
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"
|
3344
|
+
dependencies:
|
3345
|
+
minipass "^2.2.1"
|
3346
|
+
|
3347
|
+
mixin-deep@^1.2.0:
|
3348
|
+
version "1.3.1"
|
3349
|
+
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
|
3350
|
+
dependencies:
|
3351
|
+
for-in "^1.0.2"
|
3352
|
+
is-extendable "^1.0.1"
|
3353
|
+
|
2747
3354
|
mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0:
|
2748
3355
|
version "0.5.1"
|
2749
3356
|
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
|
@@ -2766,10 +3373,38 @@ nan@^2.3.0:
|
|
2766
3373
|
version "2.7.0"
|
2767
3374
|
resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
|
2768
3375
|
|
3376
|
+
nan@^2.9.2:
|
3377
|
+
version "2.11.0"
|
3378
|
+
resolved "https://registry.yarnpkg.com/nan/-/nan-2.11.0.tgz#574e360e4d954ab16966ec102c0c049fd961a099"
|
3379
|
+
|
3380
|
+
nanomatch@^1.2.9:
|
3381
|
+
version "1.2.13"
|
3382
|
+
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
|
3383
|
+
dependencies:
|
3384
|
+
arr-diff "^4.0.0"
|
3385
|
+
array-unique "^0.3.2"
|
3386
|
+
define-property "^2.0.2"
|
3387
|
+
extend-shallow "^3.0.2"
|
3388
|
+
fragment-cache "^0.2.1"
|
3389
|
+
is-windows "^1.0.2"
|
3390
|
+
kind-of "^6.0.2"
|
3391
|
+
object.pick "^1.3.0"
|
3392
|
+
regex-not "^1.0.0"
|
3393
|
+
snapdragon "^0.8.1"
|
3394
|
+
to-regex "^3.0.1"
|
3395
|
+
|
2769
3396
|
natural-compare@^1.4.0:
|
2770
3397
|
version "1.4.0"
|
2771
3398
|
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
|
2772
3399
|
|
3400
|
+
needle@^2.2.1:
|
3401
|
+
version "2.2.2"
|
3402
|
+
resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418"
|
3403
|
+
dependencies:
|
3404
|
+
debug "^2.1.2"
|
3405
|
+
iconv-lite "^0.4.4"
|
3406
|
+
sax "^1.2.4"
|
3407
|
+
|
2773
3408
|
netrc@^0.1.4:
|
2774
3409
|
version "0.1.4"
|
2775
3410
|
resolved "https://registry.yarnpkg.com/netrc/-/netrc-0.1.4.tgz#6be94fcaca8d77ade0a9670dc460914c94472444"
|
@@ -2809,6 +3444,25 @@ node-libs-browser@^2.0.0:
|
|
2809
3444
|
util "^0.10.3"
|
2810
3445
|
vm-browserify "0.0.4"
|
2811
3446
|
|
3447
|
+
node-modules-regexp@^1.0.0:
|
3448
|
+
version "1.0.0"
|
3449
|
+
resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
|
3450
|
+
|
3451
|
+
node-pre-gyp@^0.10.0:
|
3452
|
+
version "0.10.3"
|
3453
|
+
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc"
|
3454
|
+
dependencies:
|
3455
|
+
detect-libc "^1.0.2"
|
3456
|
+
mkdirp "^0.5.1"
|
3457
|
+
needle "^2.2.1"
|
3458
|
+
nopt "^4.0.1"
|
3459
|
+
npm-packlist "^1.1.6"
|
3460
|
+
npmlog "^4.0.2"
|
3461
|
+
rc "^1.2.7"
|
3462
|
+
rimraf "^2.6.1"
|
3463
|
+
semver "^5.3.0"
|
3464
|
+
tar "^4"
|
3465
|
+
|
2812
3466
|
node-pre-gyp@^0.6.36:
|
2813
3467
|
version "0.6.37"
|
2814
3468
|
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz#3c872b236b2e266e4140578fe1ee88f693323a05"
|
@@ -2824,6 +3478,12 @@ node-pre-gyp@^0.6.36:
|
|
2824
3478
|
tar "^2.2.1"
|
2825
3479
|
tar-pack "^3.4.0"
|
2826
3480
|
|
3481
|
+
node-releases@^1.0.0-alpha.11:
|
3482
|
+
version "1.0.0-alpha.11"
|
3483
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.0.0-alpha.11.tgz#73c810acc2e5b741a17ddfbb39dfca9ab9359d8a"
|
3484
|
+
dependencies:
|
3485
|
+
semver "^5.3.0"
|
3486
|
+
|
2827
3487
|
nopt@^4.0.1:
|
2828
3488
|
version "4.0.1"
|
2829
3489
|
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
|
@@ -2840,12 +3500,23 @@ normalize-package-data@^2.3.2:
|
|
2840
3500
|
semver "2 || 3 || 4 || 5"
|
2841
3501
|
validate-npm-package-license "^3.0.1"
|
2842
3502
|
|
2843
|
-
normalize-path@^2.0.0, normalize-path@^2.0.1:
|
3503
|
+
normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
|
2844
3504
|
version "2.1.1"
|
2845
3505
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
|
2846
3506
|
dependencies:
|
2847
3507
|
remove-trailing-separator "^1.0.1"
|
2848
3508
|
|
3509
|
+
npm-bundled@^1.0.1:
|
3510
|
+
version "1.0.5"
|
3511
|
+
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979"
|
3512
|
+
|
3513
|
+
npm-packlist@^1.1.6:
|
3514
|
+
version "1.1.11"
|
3515
|
+
resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de"
|
3516
|
+
dependencies:
|
3517
|
+
ignore-walk "^3.0.1"
|
3518
|
+
npm-bundled "^1.0.1"
|
3519
|
+
|
2849
3520
|
npm-run-path@^2.0.0:
|
2850
3521
|
version "2.0.2"
|
2851
3522
|
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
|
@@ -2877,6 +3548,14 @@ object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@
|
|
2877
3548
|
version "4.1.1"
|
2878
3549
|
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
2879
3550
|
|
3551
|
+
object-copy@^0.1.0:
|
3552
|
+
version "0.1.0"
|
3553
|
+
resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
|
3554
|
+
dependencies:
|
3555
|
+
copy-descriptor "^0.1.0"
|
3556
|
+
define-property "^0.2.5"
|
3557
|
+
kind-of "^3.0.3"
|
3558
|
+
|
2880
3559
|
object-inspect@~1.3.0:
|
2881
3560
|
version "1.3.0"
|
2882
3561
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.3.0.tgz#5b1eb8e6742e2ee83342a637034d844928ba2f6d"
|
@@ -2885,6 +3564,19 @@ object-keys@^1.0.8:
|
|
2885
3564
|
version "1.0.11"
|
2886
3565
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
|
2887
3566
|
|
3567
|
+
object-visit@^1.0.0:
|
3568
|
+
version "1.0.1"
|
3569
|
+
resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
|
3570
|
+
dependencies:
|
3571
|
+
isobject "^3.0.0"
|
3572
|
+
|
3573
|
+
object.getownpropertydescriptors@^2.0.3:
|
3574
|
+
version "2.0.3"
|
3575
|
+
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
|
3576
|
+
dependencies:
|
3577
|
+
define-properties "^1.1.2"
|
3578
|
+
es-abstract "^1.5.1"
|
3579
|
+
|
2888
3580
|
object.omit@^2.0.0:
|
2889
3581
|
version "2.0.1"
|
2890
3582
|
resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
|
@@ -2892,6 +3584,12 @@ object.omit@^2.0.0:
|
|
2892
3584
|
for-own "^0.1.4"
|
2893
3585
|
is-extendable "^0.1.1"
|
2894
3586
|
|
3587
|
+
object.pick@^1.3.0:
|
3588
|
+
version "1.3.0"
|
3589
|
+
resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
|
3590
|
+
dependencies:
|
3591
|
+
isobject "^3.0.1"
|
3592
|
+
|
2895
3593
|
once@^1.3.0, once@^1.3.3:
|
2896
3594
|
version "1.4.0"
|
2897
3595
|
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
|
@@ -2946,21 +3644,23 @@ osenv@^0.1.4:
|
|
2946
3644
|
os-homedir "^1.0.0"
|
2947
3645
|
os-tmpdir "^1.0.0"
|
2948
3646
|
|
2949
|
-
output-file-sync@^
|
2950
|
-
version "
|
2951
|
-
resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-
|
3647
|
+
output-file-sync@^2.0.0:
|
3648
|
+
version "2.0.1"
|
3649
|
+
resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-2.0.1.tgz#f53118282f5f553c2799541792b723a4c71430c0"
|
2952
3650
|
dependencies:
|
2953
|
-
graceful-fs "^4.1.
|
3651
|
+
graceful-fs "^4.1.11"
|
3652
|
+
is-plain-obj "^1.1.0"
|
2954
3653
|
mkdirp "^0.5.1"
|
2955
|
-
object-assign "^4.1.0"
|
2956
3654
|
|
2957
3655
|
p-finally@^1.0.0:
|
2958
3656
|
version "1.0.0"
|
2959
3657
|
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
|
2960
3658
|
|
2961
3659
|
p-limit@^1.1.0:
|
2962
|
-
version "1.
|
2963
|
-
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.
|
3660
|
+
version "1.3.0"
|
3661
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
|
3662
|
+
dependencies:
|
3663
|
+
p-try "^1.0.0"
|
2964
3664
|
|
2965
3665
|
p-locate@^2.0.0:
|
2966
3666
|
version "2.0.0"
|
@@ -2974,6 +3674,10 @@ p-retry@1.0.0:
|
|
2974
3674
|
dependencies:
|
2975
3675
|
retry "^0.10.0"
|
2976
3676
|
|
3677
|
+
p-try@^1.0.0:
|
3678
|
+
version "1.0.0"
|
3679
|
+
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
|
3680
|
+
|
2977
3681
|
pako@~0.2.0:
|
2978
3682
|
version "0.2.9"
|
2979
3683
|
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
|
@@ -3017,10 +3721,18 @@ parse5@^3.0.2:
|
|
3017
3721
|
dependencies:
|
3018
3722
|
"@types/node" "^6.0.46"
|
3019
3723
|
|
3724
|
+
pascalcase@^0.1.1:
|
3725
|
+
version "0.1.1"
|
3726
|
+
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
|
3727
|
+
|
3020
3728
|
path-browserify@0.0.0:
|
3021
3729
|
version "0.0.0"
|
3022
3730
|
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
|
3023
3731
|
|
3732
|
+
path-dirname@^1.0.0:
|
3733
|
+
version "1.0.2"
|
3734
|
+
resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
|
3735
|
+
|
3024
3736
|
path-exists@^2.0.0:
|
3025
3737
|
version "2.1.0"
|
3026
3738
|
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
|
@@ -3067,10 +3779,14 @@ performance-now@^0.2.0:
|
|
3067
3779
|
version "0.2.0"
|
3068
3780
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"
|
3069
3781
|
|
3070
|
-
pify@^2.0.0
|
3782
|
+
pify@^2.0.0:
|
3071
3783
|
version "2.3.0"
|
3072
3784
|
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
|
3073
3785
|
|
3786
|
+
pify@^3.0.0:
|
3787
|
+
version "3.0.0"
|
3788
|
+
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
|
3789
|
+
|
3074
3790
|
pinkie-promise@^2.0.0:
|
3075
3791
|
version "2.0.1"
|
3076
3792
|
resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
|
@@ -3081,6 +3797,12 @@ pinkie@^2.0.0:
|
|
3081
3797
|
version "2.0.4"
|
3082
3798
|
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
|
3083
3799
|
|
3800
|
+
pirates@^4.0.0:
|
3801
|
+
version "4.0.0"
|
3802
|
+
resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.0.tgz#850b18781b4ac6ec58a43c9ed9ec5fe6796addbd"
|
3803
|
+
dependencies:
|
3804
|
+
node-modules-regexp "^1.0.0"
|
3805
|
+
|
3084
3806
|
pkg-dir@^1.0.0:
|
3085
3807
|
version "1.0.0"
|
3086
3808
|
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
|
@@ -3105,6 +3827,10 @@ pn@^1.0.0:
|
|
3105
3827
|
version "1.0.0"
|
3106
3828
|
resolved "https://registry.yarnpkg.com/pn/-/pn-1.0.0.tgz#1cf5a30b0d806cd18f88fc41a6b5d4ad615b3ba9"
|
3107
3829
|
|
3830
|
+
posix-character-classes@^0.1.0:
|
3831
|
+
version "0.1.1"
|
3832
|
+
resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
|
3833
|
+
|
3108
3834
|
prelude-ls@~1.1.2:
|
3109
3835
|
version "1.1.2"
|
3110
3836
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
@@ -3214,6 +3940,15 @@ rc@^1.1.7:
|
|
3214
3940
|
minimist "^1.2.0"
|
3215
3941
|
strip-json-comments "~2.0.1"
|
3216
3942
|
|
3943
|
+
rc@^1.2.7:
|
3944
|
+
version "1.2.8"
|
3945
|
+
resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
|
3946
|
+
dependencies:
|
3947
|
+
deep-extend "^0.6.0"
|
3948
|
+
ini "~1.3.0"
|
3949
|
+
minimist "^1.2.0"
|
3950
|
+
strip-json-comments "~2.0.1"
|
3951
|
+
|
3217
3952
|
re-emitter@^1.0.0:
|
3218
3953
|
version "1.1.3"
|
3219
3954
|
resolved "https://registry.yarnpkg.com/re-emitter/-/re-emitter-1.1.3.tgz#fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7"
|
@@ -3314,24 +4049,32 @@ redux@^3.7.2:
|
|
3314
4049
|
loose-envify "^1.1.0"
|
3315
4050
|
symbol-observable "^1.0.3"
|
3316
4051
|
|
3317
|
-
regenerate@^
|
3318
|
-
version "
|
3319
|
-
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-
|
4052
|
+
regenerate-unicode-properties@^7.0.0:
|
4053
|
+
version "7.0.0"
|
4054
|
+
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz#107405afcc4a190ec5ed450ecaa00ed0cafa7a4c"
|
4055
|
+
dependencies:
|
4056
|
+
regenerate "^1.4.0"
|
3320
4057
|
|
3321
|
-
|
3322
|
-
version "
|
3323
|
-
resolved "https://registry.yarnpkg.com/
|
4058
|
+
regenerate@^1.4.0:
|
4059
|
+
version "1.4.0"
|
4060
|
+
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
|
3324
4061
|
|
3325
4062
|
regenerator-runtime@^0.11.0:
|
3326
4063
|
version "0.11.0"
|
3327
4064
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
|
3328
4065
|
|
3329
|
-
regenerator-
|
3330
|
-
version "0.
|
3331
|
-
resolved "https://registry.yarnpkg.com/regenerator-
|
4066
|
+
regenerator-runtime@^0.11.1:
|
4067
|
+
version "0.11.1"
|
4068
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
|
4069
|
+
|
4070
|
+
regenerator-runtime@^0.12.0:
|
4071
|
+
version "0.12.1"
|
4072
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de"
|
4073
|
+
|
4074
|
+
regenerator-transform@^0.13.3:
|
4075
|
+
version "0.13.3"
|
4076
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb"
|
3332
4077
|
dependencies:
|
3333
|
-
babel-runtime "^6.18.0"
|
3334
|
-
babel-types "^6.19.0"
|
3335
4078
|
private "^0.1.6"
|
3336
4079
|
|
3337
4080
|
regex-cache@^0.4.2:
|
@@ -3340,21 +4083,31 @@ regex-cache@^0.4.2:
|
|
3340
4083
|
dependencies:
|
3341
4084
|
is-equal-shallow "^0.1.3"
|
3342
4085
|
|
3343
|
-
|
3344
|
-
version "
|
3345
|
-
resolved "https://registry.yarnpkg.com/
|
4086
|
+
regex-not@^1.0.0, regex-not@^1.0.2:
|
4087
|
+
version "1.0.2"
|
4088
|
+
resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
|
3346
4089
|
dependencies:
|
3347
|
-
|
3348
|
-
|
3349
|
-
regjsparser "^0.1.4"
|
4090
|
+
extend-shallow "^3.0.2"
|
4091
|
+
safe-regex "^1.1.0"
|
3350
4092
|
|
3351
|
-
|
3352
|
-
version "
|
3353
|
-
resolved "https://registry.yarnpkg.com/
|
4093
|
+
regexpu-core@^4.1.3, regexpu-core@^4.2.0:
|
4094
|
+
version "4.2.0"
|
4095
|
+
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.2.0.tgz#a3744fa03806cffe146dea4421a3e73bdcc47b1d"
|
4096
|
+
dependencies:
|
4097
|
+
regenerate "^1.4.0"
|
4098
|
+
regenerate-unicode-properties "^7.0.0"
|
4099
|
+
regjsgen "^0.4.0"
|
4100
|
+
regjsparser "^0.3.0"
|
4101
|
+
unicode-match-property-ecmascript "^1.0.4"
|
4102
|
+
unicode-match-property-value-ecmascript "^1.0.2"
|
3354
4103
|
|
3355
|
-
|
3356
|
-
version "0.
|
3357
|
-
resolved "https://registry.yarnpkg.com/
|
4104
|
+
regjsgen@^0.4.0:
|
4105
|
+
version "0.4.0"
|
4106
|
+
resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.4.0.tgz#c1eb4c89a209263f8717c782591523913ede2561"
|
4107
|
+
|
4108
|
+
regjsparser@^0.3.0:
|
4109
|
+
version "0.3.0"
|
4110
|
+
resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.3.0.tgz#3c326da7fcfd69fa0d332575a41c8c0cdf588c96"
|
3358
4111
|
dependencies:
|
3359
4112
|
jsesc "~0.5.0"
|
3360
4113
|
|
@@ -3384,7 +4137,7 @@ repeat-element@^1.1.2:
|
|
3384
4137
|
version "1.1.2"
|
3385
4138
|
resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
|
3386
4139
|
|
3387
|
-
repeat-string@^1.5.2:
|
4140
|
+
repeat-string@^1.5.2, repeat-string@^1.6.1:
|
3388
4141
|
version "1.6.1"
|
3389
4142
|
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
|
3390
4143
|
|
@@ -3454,12 +4207,22 @@ resolve-from@^1.0.0:
|
|
3454
4207
|
version "1.0.1"
|
3455
4208
|
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"
|
3456
4209
|
|
4210
|
+
resolve-url@^0.2.1:
|
4211
|
+
version "0.2.1"
|
4212
|
+
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
4213
|
+
|
3457
4214
|
resolve@^1.1.6, resolve@^1.2.0, resolve@~1.4.0:
|
3458
4215
|
version "1.4.0"
|
3459
4216
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86"
|
3460
4217
|
dependencies:
|
3461
4218
|
path-parse "^1.0.5"
|
3462
4219
|
|
4220
|
+
resolve@^1.3.2, resolve@^1.8.1:
|
4221
|
+
version "1.8.1"
|
4222
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.8.1.tgz#82f1ec19a423ac1fbd080b0bab06ba36e84a7a26"
|
4223
|
+
dependencies:
|
4224
|
+
path-parse "^1.0.5"
|
4225
|
+
|
3463
4226
|
restore-cursor@^1.0.1:
|
3464
4227
|
version "1.0.1"
|
3465
4228
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
|
@@ -3480,6 +4243,10 @@ resumer@~0.0.0:
|
|
3480
4243
|
dependencies:
|
3481
4244
|
through "~2.3.4"
|
3482
4245
|
|
4246
|
+
ret@~0.1.10:
|
4247
|
+
version "0.1.15"
|
4248
|
+
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
|
4249
|
+
|
3483
4250
|
retry@^0.10.0:
|
3484
4251
|
version "0.10.1"
|
3485
4252
|
resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4"
|
@@ -3527,7 +4294,21 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0,
|
|
3527
4294
|
version "5.1.1"
|
3528
4295
|
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
|
3529
4296
|
|
3530
|
-
|
4297
|
+
safe-buffer@^5.1.2:
|
4298
|
+
version "5.1.2"
|
4299
|
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
4300
|
+
|
4301
|
+
safe-regex@^1.1.0:
|
4302
|
+
version "1.1.0"
|
4303
|
+
resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
|
4304
|
+
dependencies:
|
4305
|
+
ret "~0.1.10"
|
4306
|
+
|
4307
|
+
"safer-buffer@>= 2.1.2 < 3":
|
4308
|
+
version "2.1.2"
|
4309
|
+
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
4310
|
+
|
4311
|
+
sax@^1.2.1, sax@^1.2.4:
|
3531
4312
|
version "1.2.4"
|
3532
4313
|
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
|
3533
4314
|
|
@@ -3539,6 +4320,10 @@ semver@5.3.0:
|
|
3539
4320
|
version "5.3.0"
|
3540
4321
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
3541
4322
|
|
4323
|
+
semver@^5.4.1:
|
4324
|
+
version "5.5.1"
|
4325
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.1.tgz#7dfdd8814bdb7cabc7be0fb1d734cfb66c940477"
|
4326
|
+
|
3542
4327
|
semver@~5.0.1:
|
3543
4328
|
version "5.0.3"
|
3544
4329
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a"
|
@@ -3551,6 +4336,24 @@ set-immediate-shim@^1.0.1:
|
|
3551
4336
|
version "1.0.1"
|
3552
4337
|
resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
|
3553
4338
|
|
4339
|
+
set-value@^0.4.3:
|
4340
|
+
version "0.4.3"
|
4341
|
+
resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
|
4342
|
+
dependencies:
|
4343
|
+
extend-shallow "^2.0.1"
|
4344
|
+
is-extendable "^0.1.1"
|
4345
|
+
is-plain-object "^2.0.1"
|
4346
|
+
to-object-path "^0.3.0"
|
4347
|
+
|
4348
|
+
set-value@^2.0.0:
|
4349
|
+
version "2.0.0"
|
4350
|
+
resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
|
4351
|
+
dependencies:
|
4352
|
+
extend-shallow "^2.0.1"
|
4353
|
+
is-extendable "^0.1.1"
|
4354
|
+
is-plain-object "^2.0.3"
|
4355
|
+
split-string "^3.0.1"
|
4356
|
+
|
3554
4357
|
setimmediate@^1.0.4, setimmediate@^1.0.5:
|
3555
4358
|
version "1.0.5"
|
3556
4359
|
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
@@ -3595,10 +4398,41 @@ slash@^1.0.0:
|
|
3595
4398
|
version "1.0.0"
|
3596
4399
|
resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
|
3597
4400
|
|
4401
|
+
slash@^2.0.0:
|
4402
|
+
version "2.0.0"
|
4403
|
+
resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
|
4404
|
+
|
3598
4405
|
slice-ansi@0.0.4:
|
3599
4406
|
version "0.0.4"
|
3600
4407
|
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
|
3601
4408
|
|
4409
|
+
snapdragon-node@^2.0.1:
|
4410
|
+
version "2.1.1"
|
4411
|
+
resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
|
4412
|
+
dependencies:
|
4413
|
+
define-property "^1.0.0"
|
4414
|
+
isobject "^3.0.0"
|
4415
|
+
snapdragon-util "^3.0.1"
|
4416
|
+
|
4417
|
+
snapdragon-util@^3.0.1:
|
4418
|
+
version "3.0.1"
|
4419
|
+
resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
|
4420
|
+
dependencies:
|
4421
|
+
kind-of "^3.2.0"
|
4422
|
+
|
4423
|
+
snapdragon@^0.8.1:
|
4424
|
+
version "0.8.2"
|
4425
|
+
resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
|
4426
|
+
dependencies:
|
4427
|
+
base "^0.11.1"
|
4428
|
+
debug "^2.2.0"
|
4429
|
+
define-property "^0.2.5"
|
4430
|
+
extend-shallow "^2.0.1"
|
4431
|
+
map-cache "^0.2.2"
|
4432
|
+
source-map "^0.5.6"
|
4433
|
+
source-map-resolve "^0.5.0"
|
4434
|
+
use "^3.1.0"
|
4435
|
+
|
3602
4436
|
sntp@1.x.x:
|
3603
4437
|
version "1.0.9"
|
3604
4438
|
resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
|
@@ -3609,16 +4443,41 @@ source-list-map@^2.0.0:
|
|
3609
4443
|
version "2.0.0"
|
3610
4444
|
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085"
|
3611
4445
|
|
4446
|
+
source-map-resolve@^0.5.0:
|
4447
|
+
version "0.5.2"
|
4448
|
+
resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
|
4449
|
+
dependencies:
|
4450
|
+
atob "^2.1.1"
|
4451
|
+
decode-uri-component "^0.2.0"
|
4452
|
+
resolve-url "^0.2.1"
|
4453
|
+
source-map-url "^0.4.0"
|
4454
|
+
urix "^0.1.0"
|
4455
|
+
|
3612
4456
|
source-map-support@^0.4.15:
|
3613
4457
|
version "0.4.18"
|
3614
4458
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
|
3615
4459
|
dependencies:
|
3616
4460
|
source-map "^0.5.6"
|
3617
4461
|
|
3618
|
-
source-map
|
4462
|
+
source-map-support@^0.5.9:
|
4463
|
+
version "0.5.9"
|
4464
|
+
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz#41bc953b2534267ea2d605bccfa7bfa3111ced5f"
|
4465
|
+
dependencies:
|
4466
|
+
buffer-from "^1.0.0"
|
4467
|
+
source-map "^0.6.0"
|
4468
|
+
|
4469
|
+
source-map-url@^0.4.0:
|
4470
|
+
version "0.4.0"
|
4471
|
+
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
|
4472
|
+
|
4473
|
+
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, source-map@~0.5.6:
|
3619
4474
|
version "0.5.7"
|
3620
4475
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
3621
4476
|
|
4477
|
+
source-map@^0.6.0:
|
4478
|
+
version "0.6.1"
|
4479
|
+
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
|
4480
|
+
|
3622
4481
|
spdx-correct@~1.0.0:
|
3623
4482
|
version "1.0.2"
|
3624
4483
|
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
|
@@ -3633,6 +4492,12 @@ spdx-license-ids@^1.0.2:
|
|
3633
4492
|
version "1.2.2"
|
3634
4493
|
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
|
3635
4494
|
|
4495
|
+
split-string@^3.0.1, split-string@^3.0.2:
|
4496
|
+
version "3.1.0"
|
4497
|
+
resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
|
4498
|
+
dependencies:
|
4499
|
+
extend-shallow "^3.0.0"
|
4500
|
+
|
3636
4501
|
split@^1.0.0:
|
3637
4502
|
version "1.0.1"
|
3638
4503
|
resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9"
|
@@ -3657,6 +4522,13 @@ sshpk@^1.7.0:
|
|
3657
4522
|
jsbn "~0.1.0"
|
3658
4523
|
tweetnacl "~0.14.0"
|
3659
4524
|
|
4525
|
+
static-extend@^0.1.1:
|
4526
|
+
version "0.1.2"
|
4527
|
+
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
|
4528
|
+
dependencies:
|
4529
|
+
define-property "^0.2.5"
|
4530
|
+
object-copy "^0.1.0"
|
4531
|
+
|
3660
4532
|
stealthy-require@^1.1.0:
|
3661
4533
|
version "1.1.1"
|
3662
4534
|
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
|
@@ -3753,6 +4625,12 @@ supports-color@^4.2.1:
|
|
3753
4625
|
dependencies:
|
3754
4626
|
has-flag "^2.0.0"
|
3755
4627
|
|
4628
|
+
supports-color@^5.3.0:
|
4629
|
+
version "5.5.0"
|
4630
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
|
4631
|
+
dependencies:
|
4632
|
+
has-flag "^3.0.0"
|
4633
|
+
|
3756
4634
|
symbol-observable@^1.0.3:
|
3757
4635
|
version "1.0.4"
|
3758
4636
|
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
|
@@ -3837,6 +4715,18 @@ tar@^2.2.1:
|
|
3837
4715
|
fstream "^1.0.2"
|
3838
4716
|
inherits "2"
|
3839
4717
|
|
4718
|
+
tar@^4:
|
4719
|
+
version "4.4.6"
|
4720
|
+
resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b"
|
4721
|
+
dependencies:
|
4722
|
+
chownr "^1.0.1"
|
4723
|
+
fs-minipass "^1.2.5"
|
4724
|
+
minipass "^2.3.3"
|
4725
|
+
minizlib "^1.1.0"
|
4726
|
+
mkdirp "^0.5.0"
|
4727
|
+
safe-buffer "^5.1.2"
|
4728
|
+
yallist "^3.0.2"
|
4729
|
+
|
3840
4730
|
text-table@~0.2.0:
|
3841
4731
|
version "0.2.0"
|
3842
4732
|
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
|
@@ -3872,6 +4762,32 @@ to-fast-properties@^1.0.3:
|
|
3872
4762
|
version "1.0.3"
|
3873
4763
|
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
3874
4764
|
|
4765
|
+
to-fast-properties@^2.0.0:
|
4766
|
+
version "2.0.0"
|
4767
|
+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
|
4768
|
+
|
4769
|
+
to-object-path@^0.3.0:
|
4770
|
+
version "0.3.0"
|
4771
|
+
resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
|
4772
|
+
dependencies:
|
4773
|
+
kind-of "^3.0.2"
|
4774
|
+
|
4775
|
+
to-regex-range@^2.1.0:
|
4776
|
+
version "2.1.1"
|
4777
|
+
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
|
4778
|
+
dependencies:
|
4779
|
+
is-number "^3.0.0"
|
4780
|
+
repeat-string "^1.6.1"
|
4781
|
+
|
4782
|
+
to-regex@^3.0.1, to-regex@^3.0.2:
|
4783
|
+
version "3.0.2"
|
4784
|
+
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
|
4785
|
+
dependencies:
|
4786
|
+
define-property "^2.0.2"
|
4787
|
+
extend-shallow "^3.0.2"
|
4788
|
+
regex-not "^1.0.2"
|
4789
|
+
safe-regex "^1.1.0"
|
4790
|
+
|
3875
4791
|
tough-cookie@>=2.3.0, tough-cookie@^2.3.2, tough-cookie@~2.3.0:
|
3876
4792
|
version "2.3.2"
|
3877
4793
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
@@ -3947,6 +4863,49 @@ uid-number@^0.0.6:
|
|
3947
4863
|
version "0.0.6"
|
3948
4864
|
resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81"
|
3949
4865
|
|
4866
|
+
unicode-canonical-property-names-ecmascript@^1.0.4:
|
4867
|
+
version "1.0.4"
|
4868
|
+
resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
|
4869
|
+
|
4870
|
+
unicode-match-property-ecmascript@^1.0.4:
|
4871
|
+
version "1.0.4"
|
4872
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
|
4873
|
+
dependencies:
|
4874
|
+
unicode-canonical-property-names-ecmascript "^1.0.4"
|
4875
|
+
unicode-property-aliases-ecmascript "^1.0.4"
|
4876
|
+
|
4877
|
+
unicode-match-property-value-ecmascript@^1.0.2:
|
4878
|
+
version "1.0.2"
|
4879
|
+
resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz#9f1dc76926d6ccf452310564fd834ace059663d4"
|
4880
|
+
|
4881
|
+
unicode-property-aliases-ecmascript@^1.0.4:
|
4882
|
+
version "1.0.4"
|
4883
|
+
resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0"
|
4884
|
+
|
4885
|
+
union-value@^1.0.0:
|
4886
|
+
version "1.0.0"
|
4887
|
+
resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
|
4888
|
+
dependencies:
|
4889
|
+
arr-union "^3.1.0"
|
4890
|
+
get-value "^2.0.6"
|
4891
|
+
is-extendable "^0.1.1"
|
4892
|
+
set-value "^0.4.3"
|
4893
|
+
|
4894
|
+
unset-value@^1.0.0:
|
4895
|
+
version "1.0.0"
|
4896
|
+
resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
|
4897
|
+
dependencies:
|
4898
|
+
has-value "^0.3.1"
|
4899
|
+
isobject "^3.0.0"
|
4900
|
+
|
4901
|
+
upath@^1.0.5:
|
4902
|
+
version "1.1.0"
|
4903
|
+
resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz#35256597e46a581db4793d0ce47fa9aebfc9fabd"
|
4904
|
+
|
4905
|
+
urix@^0.1.0:
|
4906
|
+
version "0.1.0"
|
4907
|
+
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
|
4908
|
+
|
3950
4909
|
url@^0.11.0:
|
3951
4910
|
version "0.11.0"
|
3952
4911
|
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
|
@@ -3954,9 +4913,9 @@ url@^0.11.0:
|
|
3954
4913
|
punycode "1.3.2"
|
3955
4914
|
querystring "0.2.0"
|
3956
4915
|
|
3957
|
-
|
3958
|
-
version "
|
3959
|
-
resolved "https://registry.yarnpkg.com/
|
4916
|
+
use@^3.1.0:
|
4917
|
+
version "3.1.1"
|
4918
|
+
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
|
3960
4919
|
|
3961
4920
|
user-home@^2.0.0:
|
3962
4921
|
version "2.0.0"
|
@@ -3968,6 +4927,13 @@ util-deprecate@~1.0.1:
|
|
3968
4927
|
version "1.0.2"
|
3969
4928
|
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
3970
4929
|
|
4930
|
+
util.promisify@^1.0.0:
|
4931
|
+
version "1.0.0"
|
4932
|
+
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
|
4933
|
+
dependencies:
|
4934
|
+
define-properties "^1.1.2"
|
4935
|
+
object.getownpropertydescriptors "^2.0.3"
|
4936
|
+
|
3971
4937
|
util@0.10.3, util@^0.10.3:
|
3972
4938
|
version "0.10.3"
|
3973
4939
|
resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
|
@@ -3978,12 +4944,6 @@ uuid@^3.0.0:
|
|
3978
4944
|
version "3.1.0"
|
3979
4945
|
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
|
3980
4946
|
|
3981
|
-
v8flags@^2.1.1:
|
3982
|
-
version "2.1.1"
|
3983
|
-
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
|
3984
|
-
dependencies:
|
3985
|
-
user-home "^1.1.1"
|
3986
|
-
|
3987
4947
|
validate-npm-package-license@^3.0.1:
|
3988
4948
|
version "3.0.1"
|
3989
4949
|
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
|
@@ -4141,6 +5101,10 @@ yallist@^2.1.2:
|
|
4141
5101
|
version "2.1.2"
|
4142
5102
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
|
4143
5103
|
|
5104
|
+
yallist@^3.0.0, yallist@^3.0.2:
|
5105
|
+
version "3.0.2"
|
5106
|
+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
|
5107
|
+
|
4144
5108
|
yargs-parser@^7.0.0:
|
4145
5109
|
version "7.0.0"
|
4146
5110
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"
|