react_on_rails 6.7.2 → 6.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -0
- data/CHANGELOG.md +6 -1
- data/CONTRIBUTING.md +8 -0
- data/KUDOS.md +37 -30
- data/README.md +3 -1
- data/Rakefile +1 -1
- data/SUMMARY.md +1 -0
- data/docs/additional-reading/rails-assets-relative-paths.md +185 -0
- data/docs/additional-reading/rails-assets.md +3 -1
- data/docs/additional-reading/webpack-v1-notes.md +23 -0
- data/docs/additional-reading/webpack.md +5 -13
- data/lib/generators/react_on_rails/dev_tests_generator.rb +13 -11
- data/lib/generators/react_on_rails/templates/base/base/client/.babelrc +1 -1
- data/lib/generators/react_on_rails/templates/base/base/client/package.json.tt +14 -14
- data/lib/generators/react_on_rails/templates/base/base/client/webpack.config.js +13 -20
- data/lib/react_on_rails/assets_precompile.rb +1 -1
- data/lib/react_on_rails/locales_to_js.rb +1 -1
- data/lib/react_on_rails/version.rb +1 -2
- data/package.json +22 -22
- data/rakelib/run_rspec.rake +5 -1
- data/yarn.lock +1124 -588
- metadata +4 -2
|
@@ -3,6 +3,17 @@ require_relative "generator_helper"
|
|
|
3
3
|
|
|
4
4
|
module ReactOnRails
|
|
5
5
|
module Generators
|
|
6
|
+
FALLBACK_OPTION_FOR_NODE_MODULES = <<-TEXT.freeze
|
|
7
|
+
// This fixes an issue with resolving 'react' when using a local symlinked version
|
|
8
|
+
// of the node_package folder
|
|
9
|
+
modules: [
|
|
10
|
+
path.join(__dirname, 'node_modules'),
|
|
11
|
+
'node_modules',
|
|
12
|
+
],
|
|
13
|
+
},
|
|
14
|
+
plugins: [
|
|
15
|
+
TEXT
|
|
16
|
+
|
|
6
17
|
class DevTestsGenerator < Rails::Generators::Base
|
|
7
18
|
include GeneratorHelper
|
|
8
19
|
Rails::Generators.hide_namespace(namespace)
|
|
@@ -35,20 +46,11 @@ module ReactOnRails
|
|
|
35
46
|
end
|
|
36
47
|
|
|
37
48
|
def change_webpack_client_base_config_to_include_fallback
|
|
38
|
-
text = <<-TEXT
|
|
39
|
-
},
|
|
40
|
-
|
|
41
|
-
// This fixes an issue with resolving 'react' when using a local symlinked version
|
|
42
|
-
// of the node_package folder
|
|
43
|
-
resolveLoader: {
|
|
44
|
-
fallback: [path.join(__dirname, 'node_modules')],
|
|
45
|
-
},
|
|
46
|
-
plugins: [
|
|
47
|
-
TEXT
|
|
48
49
|
sentinel = /^\s\s},\n\s\splugins: \[\n/
|
|
49
50
|
config = File.join(destination_root, "client", "webpack.config.js")
|
|
50
51
|
old_contents = File.read(config)
|
|
51
|
-
new_contents =
|
|
52
|
+
new_contents = "const path = require('path');\n" +
|
|
53
|
+
old_contents.gsub(sentinel, FALLBACK_OPTION_FOR_NODE_MODULES)
|
|
52
54
|
File.open(config, "w+") { |f| f.puts new_contents }
|
|
53
55
|
end
|
|
54
56
|
|
|
@@ -14,25 +14,25 @@
|
|
|
14
14
|
},
|
|
15
15
|
"cacheDirectories": ["node_modules", "client/node_modules"],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babel-cli": "^6.
|
|
18
|
-
"babel-core": "^6.
|
|
19
|
-
"babel-loader": "^6.2
|
|
20
|
-
"babel-runtime": "^6.
|
|
21
|
-
"babel-polyfill": "^6.
|
|
22
|
-
"babel-preset-es2015": "^6.
|
|
23
|
-
"babel-preset-react": "^6.
|
|
24
|
-
"babel-preset-stage-
|
|
17
|
+
"babel-cli": "^6.23.0",
|
|
18
|
+
"babel-core": "^6.23.1",
|
|
19
|
+
"babel-loader": "^6.3.2",
|
|
20
|
+
"babel-runtime": "^6.23.0",
|
|
21
|
+
"babel-polyfill": "^6.23.0",
|
|
22
|
+
"babel-preset-es2015": "^6.22.0",
|
|
23
|
+
"babel-preset-react": "^6.23.0",
|
|
24
|
+
"babel-preset-stage-2": "^6.22.0",
|
|
25
25
|
"es5-shim": "^4.5.9",
|
|
26
|
-
"expose-loader": "^0.7.
|
|
27
|
-
"imports-loader": "^0.7.
|
|
28
|
-
"react": "^15.4.
|
|
29
|
-
"react-dom": "^15.4.
|
|
26
|
+
"expose-loader": "^0.7.3",
|
|
27
|
+
"imports-loader": "^0.7.1",
|
|
28
|
+
"react": "^15.4.2",
|
|
29
|
+
"react-dom": "^15.4.2",
|
|
30
30
|
"react-on-rails": "<%= VersionSyntaxConverter.new.rubygem_to_npm %>",
|
|
31
31
|
<%- if options.redux? -%>
|
|
32
|
-
"react-redux": "^5.0.
|
|
32
|
+
"react-redux": "^5.0.3",
|
|
33
33
|
"redux": "^3.6.0",
|
|
34
34
|
<%- end -%>
|
|
35
|
-
"webpack": "^
|
|
35
|
+
"webpack": "^2.2.1"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
}
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
/* eslint comma-dangle: ["error",
|
|
2
|
-
|
|
3
|
-
"only-multiline"} ] */
|
|
2
|
+
{"functions": "never", "arrays": "only-multiline", "objects":
|
|
3
|
+
"only-multiline"} ] */
|
|
4
4
|
|
|
5
5
|
const webpack = require('webpack');
|
|
6
|
-
const path = require('path');
|
|
7
6
|
|
|
8
7
|
const devBuild = process.env.NODE_ENV !== 'production';
|
|
9
|
-
const nodeEnv = devBuild ? 'development' : 'production';
|
|
10
8
|
|
|
11
9
|
const config = {
|
|
12
10
|
entry: [
|
|
@@ -22,28 +20,26 @@ const config = {
|
|
|
22
20
|
},
|
|
23
21
|
|
|
24
22
|
resolve: {
|
|
25
|
-
extensions: ['
|
|
26
|
-
alias: {
|
|
27
|
-
react: path.resolve('./node_modules/react'),
|
|
28
|
-
'react-dom': path.resolve('./node_modules/react-dom'),
|
|
29
|
-
},
|
|
23
|
+
extensions: ['.js', '.jsx'],
|
|
30
24
|
},
|
|
31
25
|
plugins: [
|
|
32
|
-
new webpack.
|
|
33
|
-
'process.env': {
|
|
34
|
-
NODE_ENV: JSON.stringify(nodeEnv),
|
|
35
|
-
},
|
|
36
|
-
}),
|
|
26
|
+
new webpack.EnvironmentPlugin({ NODE_ENV: 'development' }),
|
|
37
27
|
],
|
|
38
28
|
module: {
|
|
39
|
-
|
|
29
|
+
rules: [
|
|
40
30
|
{
|
|
41
31
|
test: require.resolve('react'),
|
|
42
|
-
|
|
32
|
+
use: {
|
|
33
|
+
loader: 'imports-loader',
|
|
34
|
+
options: {
|
|
35
|
+
shim: 'es5-shim/es5-shim',
|
|
36
|
+
sham: 'es5-shim/es5-sham',
|
|
37
|
+
}
|
|
38
|
+
},
|
|
43
39
|
},
|
|
44
40
|
{
|
|
45
41
|
test: /\.jsx?$/,
|
|
46
|
-
|
|
42
|
+
use: 'babel-loader',
|
|
47
43
|
exclude: /node_modules/,
|
|
48
44
|
},
|
|
49
45
|
],
|
|
@@ -56,8 +52,5 @@ if (devBuild) {
|
|
|
56
52
|
console.log('Webpack dev build for Rails'); // eslint-disable-line no-console
|
|
57
53
|
module.exports.devtool = 'eval-source-map';
|
|
58
54
|
} else {
|
|
59
|
-
config.plugins.push(
|
|
60
|
-
new webpack.optimize.DedupePlugin()
|
|
61
|
-
);
|
|
62
55
|
console.log('Webpack production build for Rails'); // eslint-disable-line no-console
|
|
63
56
|
}
|
|
@@ -72,7 +72,7 @@ module ReactOnRails
|
|
|
72
72
|
manifest_file_data = File.read(manifest_path)
|
|
73
73
|
JSON.parse(manifest_file_data)["assets"]
|
|
74
74
|
else
|
|
75
|
-
YAML.
|
|
75
|
+
YAML.safe_load(manifest_file)
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
# We realize that we're copying other Rails assets that match the regexp, but this just
|
|
@@ -70,7 +70,7 @@ module ReactOnRails
|
|
|
70
70
|
translations = {}
|
|
71
71
|
defaults = {}
|
|
72
72
|
locale_files.each do |f|
|
|
73
|
-
translation = YAML.
|
|
73
|
+
translation = YAML.safe_load(File.open(f))
|
|
74
74
|
key = translation.keys[0]
|
|
75
75
|
val = flatten(translation[key])
|
|
76
76
|
translations = translations.deep_merge(key => val)
|
data/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-on-rails",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.8.0",
|
|
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-cli": "^6.
|
|
11
|
-
"babel-core": "^6.
|
|
12
|
-
"babel-loader": "^6.2
|
|
10
|
+
"babel-cli": "^6.23.0",
|
|
11
|
+
"babel-core": "^6.23.1",
|
|
12
|
+
"babel-loader": "^6.3.2",
|
|
13
13
|
"babel-plugin-react-transform": "^2.0.2",
|
|
14
|
-
"babel-plugin-transform-flow-strip-types": "^6.
|
|
15
|
-
"babel-plugin-transform-runtime": "^6.
|
|
16
|
-
"babel-preset-es2015": "^6.
|
|
17
|
-
"babel-preset-react": "^6.
|
|
18
|
-
"babel-preset-stage-
|
|
19
|
-
"babel-runtime": "^6.
|
|
14
|
+
"babel-plugin-transform-flow-strip-types": "^6.22.0",
|
|
15
|
+
"babel-plugin-transform-runtime": "^6.23.0",
|
|
16
|
+
"babel-preset-es2015": "^6.22.0",
|
|
17
|
+
"babel-preset-react": "^6.23.0",
|
|
18
|
+
"babel-preset-stage-2": "^6.22.0",
|
|
19
|
+
"babel-runtime": "^6.23.0",
|
|
20
20
|
"babel-tape-runner": "^2.0.1",
|
|
21
|
-
"babel-types": "^6.
|
|
21
|
+
"babel-types": "^6.23.0",
|
|
22
22
|
"babelify": "^7.3.0",
|
|
23
23
|
"blue-tape": "^1.0.0",
|
|
24
|
-
"eslint": "^3.
|
|
25
|
-
"eslint-config-shakacode": "^
|
|
26
|
-
"eslint-plugin-import": "^2.
|
|
27
|
-
"eslint-plugin-jsx-a11y": "^
|
|
28
|
-
"eslint-plugin-react": "^6.
|
|
29
|
-
"flow-bin": "^0.
|
|
30
|
-
"jsdom": "^9.
|
|
31
|
-
"react": "^15.4.
|
|
32
|
-
"react-dom": "^15.4.
|
|
24
|
+
"eslint": "^3.16.1",
|
|
25
|
+
"eslint-config-shakacode": "^14.1.1",
|
|
26
|
+
"eslint-plugin-import": "^2.2.0",
|
|
27
|
+
"eslint-plugin-jsx-a11y": "^4.0.0",
|
|
28
|
+
"eslint-plugin-react": "^6.10.0",
|
|
29
|
+
"flow-bin": "^0.40.0",
|
|
30
|
+
"jsdom": "^9.11.0",
|
|
31
|
+
"react": "^15.4.2",
|
|
32
|
+
"react-dom": "^15.4.2",
|
|
33
33
|
"react-transform-hmr": "^1.0.4",
|
|
34
34
|
"redux": "^3.6.0",
|
|
35
|
-
"release-it": "^2.5.
|
|
35
|
+
"release-it": "^2.5.4",
|
|
36
36
|
"tap-spec": "^4.1.1",
|
|
37
37
|
"tape": "^4.6.3",
|
|
38
|
-
"webpack": "^
|
|
38
|
+
"webpack": "^2.2.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"babel-runtime": ">= 6",
|
data/rakelib/run_rspec.rake
CHANGED
|
@@ -77,7 +77,11 @@ task :js_tests do
|
|
|
77
77
|
sh "yarn run test"
|
|
78
78
|
end
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
msg = <<-DESC
|
|
81
|
+
Runs all tests, run `rake -D run_rspec` to see all available test options.
|
|
82
|
+
"rake run_rspec:example_basic" is a good way to run only one generator test.
|
|
83
|
+
DESC
|
|
84
|
+
desc msg
|
|
81
85
|
task run_rspec: ["run_rspec:run_rspec"]
|
|
82
86
|
|
|
83
87
|
private
|
data/yarn.lock
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# yarn lockfile v1
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
abab@^1.0.
|
|
5
|
+
abab@^1.0.3:
|
|
6
6
|
version "1.0.3"
|
|
7
7
|
resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.3.tgz#b81de5f7274ec4e756d797cd834f303642724e5d"
|
|
8
8
|
|
|
@@ -10,11 +10,17 @@ abbrev@1:
|
|
|
10
10
|
version "1.0.9"
|
|
11
11
|
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135"
|
|
12
12
|
|
|
13
|
-
acorn-
|
|
14
|
-
version "
|
|
15
|
-
resolved "https://registry.yarnpkg.com/acorn-
|
|
13
|
+
acorn-dynamic-import@^2.0.0:
|
|
14
|
+
version "2.0.2"
|
|
15
|
+
resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
|
|
16
16
|
dependencies:
|
|
17
|
-
acorn "^
|
|
17
|
+
acorn "^4.0.3"
|
|
18
|
+
|
|
19
|
+
acorn-globals@^3.1.0:
|
|
20
|
+
version "3.1.0"
|
|
21
|
+
resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
|
|
22
|
+
dependencies:
|
|
23
|
+
acorn "^4.0.4"
|
|
18
24
|
|
|
19
25
|
acorn-jsx@^3.0.0, acorn-jsx@^3.0.1:
|
|
20
26
|
version "3.0.1"
|
|
@@ -22,15 +28,11 @@ acorn-jsx@^3.0.0, acorn-jsx@^3.0.1:
|
|
|
22
28
|
dependencies:
|
|
23
29
|
acorn "^3.0.4"
|
|
24
30
|
|
|
25
|
-
acorn@4.0.4:
|
|
31
|
+
acorn@4.0.4, acorn@^4.0.3, acorn@^4.0.4:
|
|
26
32
|
version "4.0.4"
|
|
27
33
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.4.tgz#17a8d6a7a6c4ef538b814ec9abac2779293bf30a"
|
|
28
34
|
|
|
29
|
-
acorn@^
|
|
30
|
-
version "2.7.0"
|
|
31
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-2.7.0.tgz#ab6e7d9d886aaca8b085bc3312b79a198433f0e7"
|
|
32
|
-
|
|
33
|
-
acorn@^3.0.0, acorn@^3.0.4:
|
|
35
|
+
acorn@^3.0.4:
|
|
34
36
|
version "3.3.0"
|
|
35
37
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
|
|
36
38
|
|
|
@@ -41,7 +43,7 @@ agent-base@2:
|
|
|
41
43
|
extend "~3.0.0"
|
|
42
44
|
semver "~5.0.1"
|
|
43
45
|
|
|
44
|
-
ajv-keywords@^1.0.0:
|
|
46
|
+
ajv-keywords@^1.0.0, ajv-keywords@^1.1.1:
|
|
45
47
|
version "1.1.1"
|
|
46
48
|
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.1.1.tgz#02550bc605a3e576041565628af972e06c549d50"
|
|
47
49
|
|
|
@@ -100,6 +102,12 @@ argparse@^1.0.7:
|
|
|
100
102
|
dependencies:
|
|
101
103
|
sprintf-js "~1.0.2"
|
|
102
104
|
|
|
105
|
+
aria-query@^0.3.0:
|
|
106
|
+
version "0.3.0"
|
|
107
|
+
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.3.0.tgz#cb8a9984e2862711c83c80ade5b8f5ca0de2b467"
|
|
108
|
+
dependencies:
|
|
109
|
+
ast-types-flow "0.0.7"
|
|
110
|
+
|
|
103
111
|
arr-diff@^2.0.0:
|
|
104
112
|
version "2.0.0"
|
|
105
113
|
resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
|
|
@@ -143,6 +151,14 @@ asap@~2.0.3:
|
|
|
143
151
|
version "2.0.5"
|
|
144
152
|
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.5.tgz#522765b50c3510490e52d7dcfe085ef9ba96958f"
|
|
145
153
|
|
|
154
|
+
asn1.js@^4.0.0:
|
|
155
|
+
version "4.9.1"
|
|
156
|
+
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40"
|
|
157
|
+
dependencies:
|
|
158
|
+
bn.js "^4.0.0"
|
|
159
|
+
inherits "^2.0.1"
|
|
160
|
+
minimalistic-assert "^1.0.0"
|
|
161
|
+
|
|
146
162
|
asn1@~0.2.3:
|
|
147
163
|
version "0.2.3"
|
|
148
164
|
resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
|
|
@@ -161,17 +177,19 @@ assert@^1.1.1:
|
|
|
161
177
|
dependencies:
|
|
162
178
|
util "0.10.3"
|
|
163
179
|
|
|
180
|
+
ast-types-flow@0.0.7:
|
|
181
|
+
version "0.0.7"
|
|
182
|
+
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
|
|
183
|
+
|
|
164
184
|
async-each@^1.0.0:
|
|
165
185
|
version "1.0.1"
|
|
166
186
|
resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
|
|
167
187
|
|
|
168
|
-
async@^
|
|
169
|
-
version "
|
|
170
|
-
resolved "https://registry.yarnpkg.com/async/-/async-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
version "1.5.2"
|
|
174
|
-
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
|
|
188
|
+
async@^2.1.2:
|
|
189
|
+
version "2.1.5"
|
|
190
|
+
resolved "https://registry.yarnpkg.com/async/-/async-2.1.5.tgz#e587c68580994ac67fc56ff86d3ac56bdbe810bc"
|
|
191
|
+
dependencies:
|
|
192
|
+
lodash "^4.14.0"
|
|
175
193
|
|
|
176
194
|
async@~0.2.6:
|
|
177
195
|
version "0.2.10"
|
|
@@ -189,18 +207,18 @@ aws4@^1.2.1:
|
|
|
189
207
|
version "1.5.0"
|
|
190
208
|
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.5.0.tgz#0a29ffb79c31c9e712eeb087e8e7a64b4a56d755"
|
|
191
209
|
|
|
192
|
-
babel-cli@^6.
|
|
193
|
-
version "6.
|
|
194
|
-
resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.
|
|
210
|
+
babel-cli@^6.23.0:
|
|
211
|
+
version "6.23.0"
|
|
212
|
+
resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.23.0.tgz#52ff946a2b0f64645c35e7bd5eea267aa0948c0f"
|
|
195
213
|
dependencies:
|
|
196
|
-
babel-core "^6.
|
|
197
|
-
babel-polyfill "^6.
|
|
198
|
-
babel-register "^6.
|
|
199
|
-
babel-runtime "^6.
|
|
214
|
+
babel-core "^6.23.0"
|
|
215
|
+
babel-polyfill "^6.23.0"
|
|
216
|
+
babel-register "^6.23.0"
|
|
217
|
+
babel-runtime "^6.22.0"
|
|
200
218
|
commander "^2.8.1"
|
|
201
219
|
convert-source-map "^1.1.0"
|
|
202
220
|
fs-readdir-recursive "^1.0.0"
|
|
203
|
-
glob "^
|
|
221
|
+
glob "^7.0.0"
|
|
204
222
|
lodash "^4.2.0"
|
|
205
223
|
output-file-sync "^1.1.0"
|
|
206
224
|
path-is-absolute "^1.0.0"
|
|
@@ -208,7 +226,7 @@ babel-cli@^6.18.0:
|
|
|
208
226
|
source-map "^0.5.0"
|
|
209
227
|
v8flags "^2.0.10"
|
|
210
228
|
optionalDependencies:
|
|
211
|
-
chokidar "^1.
|
|
229
|
+
chokidar "^1.6.1"
|
|
212
230
|
|
|
213
231
|
babel-code-frame@^6.16.0, babel-code-frame@^6.20.0:
|
|
214
232
|
version "6.20.0"
|
|
@@ -218,7 +236,15 @@ babel-code-frame@^6.16.0, babel-code-frame@^6.20.0:
|
|
|
218
236
|
esutils "^2.0.2"
|
|
219
237
|
js-tokens "^2.0.0"
|
|
220
238
|
|
|
221
|
-
babel-
|
|
239
|
+
babel-code-frame@^6.22.0:
|
|
240
|
+
version "6.22.0"
|
|
241
|
+
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4"
|
|
242
|
+
dependencies:
|
|
243
|
+
chalk "^1.1.0"
|
|
244
|
+
esutils "^2.0.2"
|
|
245
|
+
js-tokens "^3.0.0"
|
|
246
|
+
|
|
247
|
+
babel-core@^6.0.14, babel-core@^6.18.0:
|
|
222
248
|
version "6.21.0"
|
|
223
249
|
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.21.0.tgz#75525480c21c803f826ef3867d22c19f080a3724"
|
|
224
250
|
dependencies:
|
|
@@ -242,6 +268,30 @@ babel-core@^6.0.14, babel-core@^6.18.0, babel-core@^6.21.0:
|
|
|
242
268
|
slash "^1.0.0"
|
|
243
269
|
source-map "^0.5.0"
|
|
244
270
|
|
|
271
|
+
babel-core@^6.23.0, babel-core@^6.23.1:
|
|
272
|
+
version "6.23.1"
|
|
273
|
+
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.23.1.tgz#c143cb621bb2f621710c220c5d579d15b8a442df"
|
|
274
|
+
dependencies:
|
|
275
|
+
babel-code-frame "^6.22.0"
|
|
276
|
+
babel-generator "^6.23.0"
|
|
277
|
+
babel-helpers "^6.23.0"
|
|
278
|
+
babel-messages "^6.23.0"
|
|
279
|
+
babel-register "^6.23.0"
|
|
280
|
+
babel-runtime "^6.22.0"
|
|
281
|
+
babel-template "^6.23.0"
|
|
282
|
+
babel-traverse "^6.23.1"
|
|
283
|
+
babel-types "^6.23.0"
|
|
284
|
+
babylon "^6.11.0"
|
|
285
|
+
convert-source-map "^1.1.0"
|
|
286
|
+
debug "^2.1.1"
|
|
287
|
+
json5 "^0.5.0"
|
|
288
|
+
lodash "^4.2.0"
|
|
289
|
+
minimatch "^3.0.2"
|
|
290
|
+
path-is-absolute "^1.0.0"
|
|
291
|
+
private "^0.1.6"
|
|
292
|
+
slash "^1.0.0"
|
|
293
|
+
source-map "^0.5.0"
|
|
294
|
+
|
|
245
295
|
babel-eslint@^7.1.1:
|
|
246
296
|
version "7.1.1"
|
|
247
297
|
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.1.1.tgz#8a6a884f085aa7060af69cfc77341c2f99370fb2"
|
|
@@ -264,125 +314,138 @@ babel-generator@^6.21.0:
|
|
|
264
314
|
lodash "^4.2.0"
|
|
265
315
|
source-map "^0.5.0"
|
|
266
316
|
|
|
267
|
-
babel-
|
|
268
|
-
version "6.
|
|
269
|
-
resolved "https://registry.yarnpkg.com/babel-
|
|
317
|
+
babel-generator@^6.23.0:
|
|
318
|
+
version "6.23.0"
|
|
319
|
+
resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.23.0.tgz#6b8edab956ef3116f79d8c84c5a3c05f32a74bc5"
|
|
270
320
|
dependencies:
|
|
271
|
-
babel-
|
|
272
|
-
babel-
|
|
273
|
-
babel-types "^6.
|
|
321
|
+
babel-messages "^6.23.0"
|
|
322
|
+
babel-runtime "^6.22.0"
|
|
323
|
+
babel-types "^6.23.0"
|
|
324
|
+
detect-indent "^4.0.0"
|
|
325
|
+
jsesc "^1.3.0"
|
|
326
|
+
lodash "^4.2.0"
|
|
327
|
+
source-map "^0.5.0"
|
|
328
|
+
trim-right "^1.0.1"
|
|
274
329
|
|
|
275
|
-
babel-helper-
|
|
276
|
-
version "6.
|
|
277
|
-
resolved "https://registry.yarnpkg.com/babel-helper-
|
|
330
|
+
babel-helper-bindify-decorators@^6.22.0:
|
|
331
|
+
version "6.22.0"
|
|
332
|
+
resolved "https://registry.yarnpkg.com/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.22.0.tgz#d7f5bc261275941ac62acfc4e20dacfb8a3fe952"
|
|
278
333
|
dependencies:
|
|
279
|
-
babel-
|
|
280
|
-
babel-
|
|
281
|
-
babel-types "^6.
|
|
334
|
+
babel-runtime "^6.22.0"
|
|
335
|
+
babel-traverse "^6.22.0"
|
|
336
|
+
babel-types "^6.22.0"
|
|
282
337
|
|
|
283
|
-
babel-helper-builder-
|
|
284
|
-
version "6.
|
|
285
|
-
resolved "https://registry.yarnpkg.com/babel-helper-builder-
|
|
338
|
+
babel-helper-builder-binary-assignment-operator-visitor@^6.22.0:
|
|
339
|
+
version "6.22.0"
|
|
340
|
+
resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.22.0.tgz#29df56be144d81bdeac08262bfa41d2c5e91cdcd"
|
|
286
341
|
dependencies:
|
|
287
|
-
babel-
|
|
288
|
-
babel-
|
|
342
|
+
babel-helper-explode-assignable-expression "^6.22.0"
|
|
343
|
+
babel-runtime "^6.22.0"
|
|
344
|
+
babel-types "^6.22.0"
|
|
345
|
+
|
|
346
|
+
babel-helper-builder-react-jsx@^6.23.0:
|
|
347
|
+
version "6.23.0"
|
|
348
|
+
resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.23.0.tgz#d53fc8c996e0bc56d0de0fc4cc55a7138395ea4b"
|
|
349
|
+
dependencies:
|
|
350
|
+
babel-runtime "^6.22.0"
|
|
351
|
+
babel-types "^6.23.0"
|
|
289
352
|
esutils "^2.0.0"
|
|
290
353
|
lodash "^4.2.0"
|
|
291
354
|
|
|
292
|
-
babel-helper-call-delegate@^6.
|
|
293
|
-
version "6.
|
|
294
|
-
resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.
|
|
355
|
+
babel-helper-call-delegate@^6.22.0:
|
|
356
|
+
version "6.22.0"
|
|
357
|
+
resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.22.0.tgz#119921b56120f17e9dae3f74b4f5cc7bcc1b37ef"
|
|
295
358
|
dependencies:
|
|
296
|
-
babel-helper-hoist-variables "^6.
|
|
297
|
-
babel-runtime "^6.
|
|
298
|
-
babel-traverse "^6.
|
|
299
|
-
babel-types "^6.
|
|
359
|
+
babel-helper-hoist-variables "^6.22.0"
|
|
360
|
+
babel-runtime "^6.22.0"
|
|
361
|
+
babel-traverse "^6.22.0"
|
|
362
|
+
babel-types "^6.22.0"
|
|
300
363
|
|
|
301
|
-
babel-helper-define-map@^6.
|
|
302
|
-
version "6.
|
|
303
|
-
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.
|
|
364
|
+
babel-helper-define-map@^6.23.0:
|
|
365
|
+
version "6.23.0"
|
|
366
|
+
resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.23.0.tgz#1444f960c9691d69a2ced6a205315f8fd00804e7"
|
|
304
367
|
dependencies:
|
|
305
|
-
babel-helper-function-name "^6.
|
|
306
|
-
babel-runtime "^6.
|
|
307
|
-
babel-types "^6.
|
|
368
|
+
babel-helper-function-name "^6.23.0"
|
|
369
|
+
babel-runtime "^6.22.0"
|
|
370
|
+
babel-types "^6.23.0"
|
|
308
371
|
lodash "^4.2.0"
|
|
309
372
|
|
|
310
|
-
babel-helper-explode-assignable-expression@^6.
|
|
311
|
-
version "6.
|
|
312
|
-
resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.
|
|
373
|
+
babel-helper-explode-assignable-expression@^6.22.0:
|
|
374
|
+
version "6.22.0"
|
|
375
|
+
resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.22.0.tgz#c97bf76eed3e0bae4048121f2b9dae1a4e7d0478"
|
|
313
376
|
dependencies:
|
|
314
|
-
babel-runtime "^6.
|
|
315
|
-
babel-traverse "^6.
|
|
316
|
-
babel-types "^6.
|
|
377
|
+
babel-runtime "^6.22.0"
|
|
378
|
+
babel-traverse "^6.22.0"
|
|
379
|
+
babel-types "^6.22.0"
|
|
317
380
|
|
|
318
|
-
babel-helper-explode-class@^6.
|
|
319
|
-
version "6.
|
|
320
|
-
resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.
|
|
381
|
+
babel-helper-explode-class@^6.22.0:
|
|
382
|
+
version "6.22.0"
|
|
383
|
+
resolved "https://registry.yarnpkg.com/babel-helper-explode-class/-/babel-helper-explode-class-6.22.0.tgz#646304924aa6388a516843ba7f1855ef8dfeb69b"
|
|
321
384
|
dependencies:
|
|
322
|
-
babel-helper-bindify-decorators "^6.
|
|
323
|
-
babel-runtime "^6.
|
|
324
|
-
babel-traverse "^6.
|
|
325
|
-
babel-types "^6.
|
|
385
|
+
babel-helper-bindify-decorators "^6.22.0"
|
|
386
|
+
babel-runtime "^6.22.0"
|
|
387
|
+
babel-traverse "^6.22.0"
|
|
388
|
+
babel-types "^6.22.0"
|
|
326
389
|
|
|
327
|
-
babel-helper-function-name@^6.
|
|
328
|
-
version "6.
|
|
329
|
-
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.
|
|
390
|
+
babel-helper-function-name@^6.22.0, babel-helper-function-name@^6.23.0:
|
|
391
|
+
version "6.23.0"
|
|
392
|
+
resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.23.0.tgz#25742d67175c8903dbe4b6cb9d9e1fcb8dcf23a6"
|
|
330
393
|
dependencies:
|
|
331
|
-
babel-helper-get-function-arity "^6.
|
|
332
|
-
babel-runtime "^6.
|
|
333
|
-
babel-template "^6.
|
|
334
|
-
babel-traverse "^6.
|
|
335
|
-
babel-types "^6.
|
|
394
|
+
babel-helper-get-function-arity "^6.22.0"
|
|
395
|
+
babel-runtime "^6.22.0"
|
|
396
|
+
babel-template "^6.23.0"
|
|
397
|
+
babel-traverse "^6.23.0"
|
|
398
|
+
babel-types "^6.23.0"
|
|
336
399
|
|
|
337
|
-
babel-helper-get-function-arity@^6.
|
|
338
|
-
version "6.
|
|
339
|
-
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.
|
|
400
|
+
babel-helper-get-function-arity@^6.22.0:
|
|
401
|
+
version "6.22.0"
|
|
402
|
+
resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.22.0.tgz#0beb464ad69dc7347410ac6ade9f03a50634f5ce"
|
|
340
403
|
dependencies:
|
|
341
|
-
babel-runtime "^6.
|
|
342
|
-
babel-types "^6.
|
|
404
|
+
babel-runtime "^6.22.0"
|
|
405
|
+
babel-types "^6.22.0"
|
|
343
406
|
|
|
344
|
-
babel-helper-hoist-variables@^6.
|
|
345
|
-
version "6.
|
|
346
|
-
resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.
|
|
407
|
+
babel-helper-hoist-variables@^6.22.0:
|
|
408
|
+
version "6.22.0"
|
|
409
|
+
resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.22.0.tgz#3eacbf731d80705845dd2e9718f600cfb9b4ba72"
|
|
347
410
|
dependencies:
|
|
348
|
-
babel-runtime "^6.
|
|
349
|
-
babel-types "^6.
|
|
411
|
+
babel-runtime "^6.22.0"
|
|
412
|
+
babel-types "^6.22.0"
|
|
350
413
|
|
|
351
|
-
babel-helper-optimise-call-expression@^6.
|
|
352
|
-
version "6.
|
|
353
|
-
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.
|
|
414
|
+
babel-helper-optimise-call-expression@^6.23.0:
|
|
415
|
+
version "6.23.0"
|
|
416
|
+
resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.23.0.tgz#f3ee7eed355b4282138b33d02b78369e470622f5"
|
|
354
417
|
dependencies:
|
|
355
|
-
babel-runtime "^6.
|
|
356
|
-
babel-types "^6.
|
|
418
|
+
babel-runtime "^6.22.0"
|
|
419
|
+
babel-types "^6.23.0"
|
|
357
420
|
|
|
358
|
-
babel-helper-regex@^6.
|
|
359
|
-
version "6.
|
|
360
|
-
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.
|
|
421
|
+
babel-helper-regex@^6.22.0:
|
|
422
|
+
version "6.22.0"
|
|
423
|
+
resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.22.0.tgz#79f532be1647b1f0ee3474b5f5c3da58001d247d"
|
|
361
424
|
dependencies:
|
|
362
|
-
babel-runtime "^6.
|
|
363
|
-
babel-types "^6.
|
|
425
|
+
babel-runtime "^6.22.0"
|
|
426
|
+
babel-types "^6.22.0"
|
|
364
427
|
lodash "^4.2.0"
|
|
365
428
|
|
|
366
|
-
babel-helper-remap-async-to-generator@^6.
|
|
367
|
-
version "6.
|
|
368
|
-
resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.
|
|
429
|
+
babel-helper-remap-async-to-generator@^6.22.0:
|
|
430
|
+
version "6.22.0"
|
|
431
|
+
resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.22.0.tgz#2186ae73278ed03b8b15ced089609da981053383"
|
|
369
432
|
dependencies:
|
|
370
|
-
babel-helper-function-name "^6.
|
|
371
|
-
babel-runtime "^6.
|
|
372
|
-
babel-template "^6.
|
|
373
|
-
babel-traverse "^6.
|
|
374
|
-
babel-types "^6.
|
|
433
|
+
babel-helper-function-name "^6.22.0"
|
|
434
|
+
babel-runtime "^6.22.0"
|
|
435
|
+
babel-template "^6.22.0"
|
|
436
|
+
babel-traverse "^6.22.0"
|
|
437
|
+
babel-types "^6.22.0"
|
|
375
438
|
|
|
376
|
-
babel-helper-replace-supers@^6.
|
|
377
|
-
version "6.
|
|
378
|
-
resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.
|
|
439
|
+
babel-helper-replace-supers@^6.22.0, babel-helper-replace-supers@^6.23.0:
|
|
440
|
+
version "6.23.0"
|
|
441
|
+
resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.23.0.tgz#eeaf8ad9b58ec4337ca94223bacdca1f8d9b4bfd"
|
|
379
442
|
dependencies:
|
|
380
|
-
babel-helper-optimise-call-expression "^6.
|
|
381
|
-
babel-messages "^6.
|
|
382
|
-
babel-runtime "^6.
|
|
383
|
-
babel-template "^6.
|
|
384
|
-
babel-traverse "^6.
|
|
385
|
-
babel-types "^6.
|
|
443
|
+
babel-helper-optimise-call-expression "^6.23.0"
|
|
444
|
+
babel-messages "^6.23.0"
|
|
445
|
+
babel-runtime "^6.22.0"
|
|
446
|
+
babel-template "^6.23.0"
|
|
447
|
+
babel-traverse "^6.23.0"
|
|
448
|
+
babel-types "^6.23.0"
|
|
386
449
|
|
|
387
450
|
babel-helpers@^6.16.0:
|
|
388
451
|
version "6.16.0"
|
|
@@ -391,26 +454,39 @@ babel-helpers@^6.16.0:
|
|
|
391
454
|
babel-runtime "^6.0.0"
|
|
392
455
|
babel-template "^6.16.0"
|
|
393
456
|
|
|
394
|
-
babel-
|
|
395
|
-
version "6.
|
|
396
|
-
resolved "https://registry.yarnpkg.com/babel-
|
|
457
|
+
babel-helpers@^6.23.0:
|
|
458
|
+
version "6.23.0"
|
|
459
|
+
resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.23.0.tgz#4f8f2e092d0b6a8808a4bde79c27f1e2ecf0d992"
|
|
460
|
+
dependencies:
|
|
461
|
+
babel-runtime "^6.22.0"
|
|
462
|
+
babel-template "^6.23.0"
|
|
463
|
+
|
|
464
|
+
babel-loader@^6.3.2:
|
|
465
|
+
version "6.3.2"
|
|
466
|
+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.3.2.tgz#18de4566385578c1b4f8ffe6cbc668f5e2a5ef03"
|
|
397
467
|
dependencies:
|
|
398
468
|
find-cache-dir "^0.1.1"
|
|
399
|
-
loader-utils "^0.2.
|
|
469
|
+
loader-utils "^0.2.16"
|
|
400
470
|
mkdirp "^0.5.1"
|
|
401
471
|
object-assign "^4.0.1"
|
|
402
472
|
|
|
473
|
+
babel-messages@^6.23.0:
|
|
474
|
+
version "6.23.0"
|
|
475
|
+
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
|
|
476
|
+
dependencies:
|
|
477
|
+
babel-runtime "^6.22.0"
|
|
478
|
+
|
|
403
479
|
babel-messages@^6.8.0:
|
|
404
480
|
version "6.8.0"
|
|
405
481
|
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.8.0.tgz#bf504736ca967e6d65ef0adb5a2a5f947c8e0eb9"
|
|
406
482
|
dependencies:
|
|
407
483
|
babel-runtime "^6.0.0"
|
|
408
484
|
|
|
409
|
-
babel-plugin-check-es2015-constants@^6.
|
|
410
|
-
version "6.
|
|
411
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.
|
|
485
|
+
babel-plugin-check-es2015-constants@^6.22.0:
|
|
486
|
+
version "6.22.0"
|
|
487
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
|
|
412
488
|
dependencies:
|
|
413
|
-
babel-runtime "^6.
|
|
489
|
+
babel-runtime "^6.22.0"
|
|
414
490
|
|
|
415
491
|
babel-plugin-react-transform@^2.0.2:
|
|
416
492
|
version "2.0.2"
|
|
@@ -454,7 +530,7 @@ babel-plugin-syntax-export-extensions@^6.8.0:
|
|
|
454
530
|
version "6.13.0"
|
|
455
531
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-export-extensions/-/babel-plugin-syntax-export-extensions-6.13.0.tgz#70a1484f0f9089a4e84ad44bac353c95b9b12721"
|
|
456
532
|
|
|
457
|
-
babel-plugin-syntax-flow@^6.18.0
|
|
533
|
+
babel-plugin-syntax-flow@^6.18.0:
|
|
458
534
|
version "6.18.0"
|
|
459
535
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
|
|
460
536
|
|
|
@@ -470,315 +546,320 @@ babel-plugin-syntax-object-rest-spread@^6.8.0:
|
|
|
470
546
|
version "6.13.0"
|
|
471
547
|
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
|
|
472
548
|
|
|
473
|
-
babel-plugin-syntax-trailing-function-commas@^6.
|
|
474
|
-
version "6.
|
|
475
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.
|
|
549
|
+
babel-plugin-syntax-trailing-function-commas@^6.22.0:
|
|
550
|
+
version "6.22.0"
|
|
551
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
|
|
476
552
|
|
|
477
|
-
babel-plugin-transform-async-generator-functions@^6.
|
|
478
|
-
version "6.
|
|
479
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.
|
|
553
|
+
babel-plugin-transform-async-generator-functions@^6.22.0:
|
|
554
|
+
version "6.22.0"
|
|
555
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.22.0.tgz#a720a98153a7596f204099cd5409f4b3c05bab46"
|
|
480
556
|
dependencies:
|
|
481
|
-
babel-helper-remap-async-to-generator "^6.
|
|
557
|
+
babel-helper-remap-async-to-generator "^6.22.0"
|
|
482
558
|
babel-plugin-syntax-async-generators "^6.5.0"
|
|
483
|
-
babel-runtime "^6.
|
|
559
|
+
babel-runtime "^6.22.0"
|
|
484
560
|
|
|
485
|
-
babel-plugin-transform-async-to-generator@^6.
|
|
486
|
-
version "6.
|
|
487
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.
|
|
561
|
+
babel-plugin-transform-async-to-generator@^6.22.0:
|
|
562
|
+
version "6.22.0"
|
|
563
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.22.0.tgz#194b6938ec195ad36efc4c33a971acf00d8cd35e"
|
|
488
564
|
dependencies:
|
|
489
|
-
babel-helper-remap-async-to-generator "^6.
|
|
565
|
+
babel-helper-remap-async-to-generator "^6.22.0"
|
|
490
566
|
babel-plugin-syntax-async-functions "^6.8.0"
|
|
491
|
-
babel-runtime "^6.
|
|
567
|
+
babel-runtime "^6.22.0"
|
|
492
568
|
|
|
493
|
-
babel-plugin-transform-class-constructor-call@^6.
|
|
494
|
-
version "6.
|
|
495
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.
|
|
569
|
+
babel-plugin-transform-class-constructor-call@^6.22.0:
|
|
570
|
+
version "6.22.0"
|
|
571
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-constructor-call/-/babel-plugin-transform-class-constructor-call-6.22.0.tgz#11a4d2216abb5b0eef298b493748f4f2f4869120"
|
|
496
572
|
dependencies:
|
|
497
573
|
babel-plugin-syntax-class-constructor-call "^6.18.0"
|
|
498
|
-
babel-runtime "^6.
|
|
499
|
-
babel-template "^6.
|
|
574
|
+
babel-runtime "^6.22.0"
|
|
575
|
+
babel-template "^6.22.0"
|
|
500
576
|
|
|
501
|
-
babel-plugin-transform-class-properties@^6.
|
|
502
|
-
version "6.
|
|
503
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.
|
|
577
|
+
babel-plugin-transform-class-properties@^6.22.0:
|
|
578
|
+
version "6.23.0"
|
|
579
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.23.0.tgz#187b747ee404399013563c993db038f34754ac3b"
|
|
504
580
|
dependencies:
|
|
505
|
-
babel-helper-function-name "^6.
|
|
581
|
+
babel-helper-function-name "^6.23.0"
|
|
506
582
|
babel-plugin-syntax-class-properties "^6.8.0"
|
|
507
|
-
babel-runtime "^6.
|
|
583
|
+
babel-runtime "^6.22.0"
|
|
584
|
+
babel-template "^6.23.0"
|
|
508
585
|
|
|
509
|
-
babel-plugin-transform-decorators@^6.
|
|
510
|
-
version "6.
|
|
511
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.
|
|
586
|
+
babel-plugin-transform-decorators@^6.22.0:
|
|
587
|
+
version "6.22.0"
|
|
588
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.22.0.tgz#c03635b27a23b23b7224f49232c237a73988d27c"
|
|
512
589
|
dependencies:
|
|
513
|
-
babel-helper-
|
|
514
|
-
babel-helper-explode-class "^6.8.0"
|
|
590
|
+
babel-helper-explode-class "^6.22.0"
|
|
515
591
|
babel-plugin-syntax-decorators "^6.13.0"
|
|
516
|
-
babel-runtime "^6.
|
|
517
|
-
babel-template "^6.
|
|
518
|
-
babel-types "^6.
|
|
592
|
+
babel-runtime "^6.22.0"
|
|
593
|
+
babel-template "^6.22.0"
|
|
594
|
+
babel-types "^6.22.0"
|
|
519
595
|
|
|
520
|
-
babel-plugin-transform-do-expressions@^6.
|
|
521
|
-
version "6.
|
|
522
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.
|
|
596
|
+
babel-plugin-transform-do-expressions@^6.22.0:
|
|
597
|
+
version "6.22.0"
|
|
598
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-do-expressions/-/babel-plugin-transform-do-expressions-6.22.0.tgz#28ccaf92812d949c2cd1281f690c8fdc468ae9bb"
|
|
523
599
|
dependencies:
|
|
524
600
|
babel-plugin-syntax-do-expressions "^6.8.0"
|
|
525
|
-
babel-runtime "^6.
|
|
601
|
+
babel-runtime "^6.22.0"
|
|
526
602
|
|
|
527
|
-
babel-plugin-transform-es2015-arrow-functions@^6.
|
|
528
|
-
version "6.
|
|
529
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.
|
|
603
|
+
babel-plugin-transform-es2015-arrow-functions@^6.22.0:
|
|
604
|
+
version "6.22.0"
|
|
605
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
|
|
530
606
|
dependencies:
|
|
531
|
-
babel-runtime "^6.
|
|
607
|
+
babel-runtime "^6.22.0"
|
|
532
608
|
|
|
533
|
-
babel-plugin-transform-es2015-block-scoped-functions@^6.
|
|
534
|
-
version "6.
|
|
535
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.
|
|
609
|
+
babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
|
|
610
|
+
version "6.22.0"
|
|
611
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
|
|
536
612
|
dependencies:
|
|
537
|
-
babel-runtime "^6.
|
|
613
|
+
babel-runtime "^6.22.0"
|
|
538
614
|
|
|
539
|
-
babel-plugin-transform-es2015-block-scoping@^6.
|
|
540
|
-
version "6.
|
|
541
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.
|
|
615
|
+
babel-plugin-transform-es2015-block-scoping@^6.22.0:
|
|
616
|
+
version "6.23.0"
|
|
617
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51"
|
|
542
618
|
dependencies:
|
|
543
|
-
babel-runtime "^6.
|
|
544
|
-
babel-template "^6.
|
|
545
|
-
babel-traverse "^6.
|
|
546
|
-
babel-types "^6.
|
|
619
|
+
babel-runtime "^6.22.0"
|
|
620
|
+
babel-template "^6.23.0"
|
|
621
|
+
babel-traverse "^6.23.0"
|
|
622
|
+
babel-types "^6.23.0"
|
|
547
623
|
lodash "^4.2.0"
|
|
548
624
|
|
|
549
|
-
babel-plugin-transform-es2015-classes@^6.
|
|
550
|
-
version "6.
|
|
551
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.
|
|
625
|
+
babel-plugin-transform-es2015-classes@^6.22.0:
|
|
626
|
+
version "6.23.0"
|
|
627
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1"
|
|
552
628
|
dependencies:
|
|
553
|
-
babel-helper-define-map "^6.
|
|
554
|
-
babel-helper-function-name "^6.
|
|
555
|
-
babel-helper-optimise-call-expression "^6.
|
|
556
|
-
babel-helper-replace-supers "^6.
|
|
557
|
-
babel-messages "^6.
|
|
558
|
-
babel-runtime "^6.
|
|
559
|
-
babel-template "^6.
|
|
560
|
-
babel-traverse "^6.
|
|
561
|
-
babel-types "^6.
|
|
629
|
+
babel-helper-define-map "^6.23.0"
|
|
630
|
+
babel-helper-function-name "^6.23.0"
|
|
631
|
+
babel-helper-optimise-call-expression "^6.23.0"
|
|
632
|
+
babel-helper-replace-supers "^6.23.0"
|
|
633
|
+
babel-messages "^6.23.0"
|
|
634
|
+
babel-runtime "^6.22.0"
|
|
635
|
+
babel-template "^6.23.0"
|
|
636
|
+
babel-traverse "^6.23.0"
|
|
637
|
+
babel-types "^6.23.0"
|
|
562
638
|
|
|
563
|
-
babel-plugin-transform-es2015-computed-properties@^6.
|
|
564
|
-
version "6.
|
|
565
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.
|
|
639
|
+
babel-plugin-transform-es2015-computed-properties@^6.22.0:
|
|
640
|
+
version "6.22.0"
|
|
641
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7"
|
|
566
642
|
dependencies:
|
|
567
|
-
babel-
|
|
568
|
-
babel-
|
|
569
|
-
babel-template "^6.8.0"
|
|
643
|
+
babel-runtime "^6.22.0"
|
|
644
|
+
babel-template "^6.22.0"
|
|
570
645
|
|
|
571
|
-
babel-plugin-transform-es2015-destructuring@^6.
|
|
572
|
-
version "6.
|
|
573
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.
|
|
646
|
+
babel-plugin-transform-es2015-destructuring@^6.22.0:
|
|
647
|
+
version "6.23.0"
|
|
648
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
|
|
574
649
|
dependencies:
|
|
575
|
-
babel-runtime "^6.
|
|
650
|
+
babel-runtime "^6.22.0"
|
|
576
651
|
|
|
577
|
-
babel-plugin-transform-es2015-duplicate-keys@^6.
|
|
578
|
-
version "6.
|
|
579
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.
|
|
652
|
+
babel-plugin-transform-es2015-duplicate-keys@^6.22.0:
|
|
653
|
+
version "6.22.0"
|
|
654
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b"
|
|
580
655
|
dependencies:
|
|
581
|
-
babel-runtime "^6.
|
|
582
|
-
babel-types "^6.
|
|
656
|
+
babel-runtime "^6.22.0"
|
|
657
|
+
babel-types "^6.22.0"
|
|
583
658
|
|
|
584
|
-
babel-plugin-transform-es2015-for-of@^6.
|
|
585
|
-
version "6.
|
|
586
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.
|
|
659
|
+
babel-plugin-transform-es2015-for-of@^6.22.0:
|
|
660
|
+
version "6.23.0"
|
|
661
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
|
|
587
662
|
dependencies:
|
|
588
|
-
babel-runtime "^6.
|
|
663
|
+
babel-runtime "^6.22.0"
|
|
589
664
|
|
|
590
|
-
babel-plugin-transform-es2015-function-name@^6.
|
|
591
|
-
version "6.
|
|
592
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.
|
|
665
|
+
babel-plugin-transform-es2015-function-name@^6.22.0:
|
|
666
|
+
version "6.22.0"
|
|
667
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104"
|
|
593
668
|
dependencies:
|
|
594
|
-
babel-helper-function-name "^6.
|
|
595
|
-
babel-runtime "^6.
|
|
596
|
-
babel-types "^6.
|
|
669
|
+
babel-helper-function-name "^6.22.0"
|
|
670
|
+
babel-runtime "^6.22.0"
|
|
671
|
+
babel-types "^6.22.0"
|
|
597
672
|
|
|
598
|
-
babel-plugin-transform-es2015-literals@^6.
|
|
599
|
-
version "6.
|
|
600
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.
|
|
673
|
+
babel-plugin-transform-es2015-literals@^6.22.0:
|
|
674
|
+
version "6.22.0"
|
|
675
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
|
|
601
676
|
dependencies:
|
|
602
|
-
babel-runtime "^6.
|
|
677
|
+
babel-runtime "^6.22.0"
|
|
603
678
|
|
|
604
|
-
babel-plugin-transform-es2015-modules-amd@^6.
|
|
605
|
-
version "6.
|
|
606
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.
|
|
679
|
+
babel-plugin-transform-es2015-modules-amd@^6.22.0:
|
|
680
|
+
version "6.22.0"
|
|
681
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.22.0.tgz#bf69cd34889a41c33d90dfb740e0091ccff52f21"
|
|
607
682
|
dependencies:
|
|
608
|
-
babel-plugin-transform-es2015-modules-commonjs "^6.
|
|
609
|
-
babel-runtime "^6.
|
|
610
|
-
babel-template "^6.
|
|
683
|
+
babel-plugin-transform-es2015-modules-commonjs "^6.22.0"
|
|
684
|
+
babel-runtime "^6.22.0"
|
|
685
|
+
babel-template "^6.22.0"
|
|
611
686
|
|
|
612
|
-
babel-plugin-transform-es2015-modules-commonjs@^6.
|
|
613
|
-
version "6.
|
|
614
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.
|
|
687
|
+
babel-plugin-transform-es2015-modules-commonjs@^6.22.0:
|
|
688
|
+
version "6.23.0"
|
|
689
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.23.0.tgz#cba7aa6379fb7ec99250e6d46de2973aaffa7b92"
|
|
615
690
|
dependencies:
|
|
616
|
-
babel-plugin-transform-strict-mode "^6.
|
|
617
|
-
babel-runtime "^6.
|
|
618
|
-
babel-template "^6.
|
|
619
|
-
babel-types "^6.
|
|
691
|
+
babel-plugin-transform-strict-mode "^6.22.0"
|
|
692
|
+
babel-runtime "^6.22.0"
|
|
693
|
+
babel-template "^6.23.0"
|
|
694
|
+
babel-types "^6.23.0"
|
|
620
695
|
|
|
621
|
-
babel-plugin-transform-es2015-modules-systemjs@^6.
|
|
622
|
-
version "6.
|
|
623
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.
|
|
696
|
+
babel-plugin-transform-es2015-modules-systemjs@^6.22.0:
|
|
697
|
+
version "6.23.0"
|
|
698
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0"
|
|
624
699
|
dependencies:
|
|
625
|
-
babel-helper-hoist-variables "^6.
|
|
626
|
-
babel-runtime "^6.
|
|
627
|
-
babel-template "^6.
|
|
700
|
+
babel-helper-hoist-variables "^6.22.0"
|
|
701
|
+
babel-runtime "^6.22.0"
|
|
702
|
+
babel-template "^6.23.0"
|
|
628
703
|
|
|
629
|
-
babel-plugin-transform-es2015-modules-umd@^6.
|
|
630
|
-
version "6.
|
|
631
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.
|
|
704
|
+
babel-plugin-transform-es2015-modules-umd@^6.22.0:
|
|
705
|
+
version "6.23.0"
|
|
706
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.23.0.tgz#8d284ae2e19ed8fe21d2b1b26d6e7e0fcd94f0f1"
|
|
632
707
|
dependencies:
|
|
633
|
-
babel-plugin-transform-es2015-modules-amd "^6.
|
|
634
|
-
babel-runtime "^6.
|
|
635
|
-
babel-template "^6.
|
|
708
|
+
babel-plugin-transform-es2015-modules-amd "^6.22.0"
|
|
709
|
+
babel-runtime "^6.22.0"
|
|
710
|
+
babel-template "^6.23.0"
|
|
636
711
|
|
|
637
|
-
babel-plugin-transform-es2015-object-super@^6.
|
|
638
|
-
version "6.
|
|
639
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.
|
|
712
|
+
babel-plugin-transform-es2015-object-super@^6.22.0:
|
|
713
|
+
version "6.22.0"
|
|
714
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc"
|
|
640
715
|
dependencies:
|
|
641
|
-
babel-helper-replace-supers "^6.
|
|
642
|
-
babel-runtime "^6.
|
|
716
|
+
babel-helper-replace-supers "^6.22.0"
|
|
717
|
+
babel-runtime "^6.22.0"
|
|
643
718
|
|
|
644
|
-
babel-plugin-transform-es2015-parameters@^6.
|
|
645
|
-
version "6.
|
|
646
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.
|
|
719
|
+
babel-plugin-transform-es2015-parameters@^6.22.0:
|
|
720
|
+
version "6.23.0"
|
|
721
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b"
|
|
647
722
|
dependencies:
|
|
648
|
-
babel-helper-call-delegate "^6.
|
|
649
|
-
babel-helper-get-function-arity "^6.
|
|
650
|
-
babel-runtime "^6.
|
|
651
|
-
babel-template "^6.
|
|
652
|
-
babel-traverse "^6.
|
|
653
|
-
babel-types "^6.
|
|
723
|
+
babel-helper-call-delegate "^6.22.0"
|
|
724
|
+
babel-helper-get-function-arity "^6.22.0"
|
|
725
|
+
babel-runtime "^6.22.0"
|
|
726
|
+
babel-template "^6.23.0"
|
|
727
|
+
babel-traverse "^6.23.0"
|
|
728
|
+
babel-types "^6.23.0"
|
|
654
729
|
|
|
655
|
-
babel-plugin-transform-es2015-shorthand-properties@^6.
|
|
656
|
-
version "6.
|
|
657
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.
|
|
730
|
+
babel-plugin-transform-es2015-shorthand-properties@^6.22.0:
|
|
731
|
+
version "6.22.0"
|
|
732
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723"
|
|
658
733
|
dependencies:
|
|
659
|
-
babel-runtime "^6.
|
|
660
|
-
babel-types "^6.
|
|
734
|
+
babel-runtime "^6.22.0"
|
|
735
|
+
babel-types "^6.22.0"
|
|
661
736
|
|
|
662
|
-
babel-plugin-transform-es2015-spread@^6.
|
|
663
|
-
version "6.
|
|
664
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.
|
|
737
|
+
babel-plugin-transform-es2015-spread@^6.22.0:
|
|
738
|
+
version "6.22.0"
|
|
739
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
|
|
665
740
|
dependencies:
|
|
666
|
-
babel-runtime "^6.
|
|
741
|
+
babel-runtime "^6.22.0"
|
|
667
742
|
|
|
668
|
-
babel-plugin-transform-es2015-sticky-regex@^6.
|
|
669
|
-
version "6.
|
|
670
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.
|
|
743
|
+
babel-plugin-transform-es2015-sticky-regex@^6.22.0:
|
|
744
|
+
version "6.22.0"
|
|
745
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593"
|
|
671
746
|
dependencies:
|
|
672
|
-
babel-helper-regex "^6.
|
|
673
|
-
babel-runtime "^6.
|
|
674
|
-
babel-types "^6.
|
|
747
|
+
babel-helper-regex "^6.22.0"
|
|
748
|
+
babel-runtime "^6.22.0"
|
|
749
|
+
babel-types "^6.22.0"
|
|
675
750
|
|
|
676
|
-
babel-plugin-transform-es2015-template-literals@^6.
|
|
677
|
-
version "6.
|
|
678
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.
|
|
751
|
+
babel-plugin-transform-es2015-template-literals@^6.22.0:
|
|
752
|
+
version "6.22.0"
|
|
753
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
|
|
679
754
|
dependencies:
|
|
680
|
-
babel-runtime "^6.
|
|
755
|
+
babel-runtime "^6.22.0"
|
|
681
756
|
|
|
682
|
-
babel-plugin-transform-es2015-typeof-symbol@^6.
|
|
683
|
-
version "6.
|
|
684
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.
|
|
757
|
+
babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
|
|
758
|
+
version "6.23.0"
|
|
759
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
|
|
685
760
|
dependencies:
|
|
686
|
-
babel-runtime "^6.
|
|
761
|
+
babel-runtime "^6.22.0"
|
|
687
762
|
|
|
688
|
-
babel-plugin-transform-es2015-unicode-regex@^6.
|
|
689
|
-
version "6.
|
|
690
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.
|
|
763
|
+
babel-plugin-transform-es2015-unicode-regex@^6.22.0:
|
|
764
|
+
version "6.22.0"
|
|
765
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20"
|
|
691
766
|
dependencies:
|
|
692
|
-
babel-helper-regex "^6.
|
|
693
|
-
babel-runtime "^6.
|
|
767
|
+
babel-helper-regex "^6.22.0"
|
|
768
|
+
babel-runtime "^6.22.0"
|
|
694
769
|
regexpu-core "^2.0.0"
|
|
695
770
|
|
|
696
|
-
babel-plugin-transform-exponentiation-operator@^6.
|
|
697
|
-
version "6.
|
|
698
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.
|
|
771
|
+
babel-plugin-transform-exponentiation-operator@^6.22.0:
|
|
772
|
+
version "6.22.0"
|
|
773
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.22.0.tgz#d57c8335281918e54ef053118ce6eb108468084d"
|
|
699
774
|
dependencies:
|
|
700
|
-
babel-helper-builder-binary-assignment-operator-visitor "^6.
|
|
775
|
+
babel-helper-builder-binary-assignment-operator-visitor "^6.22.0"
|
|
701
776
|
babel-plugin-syntax-exponentiation-operator "^6.8.0"
|
|
702
|
-
babel-runtime "^6.
|
|
777
|
+
babel-runtime "^6.22.0"
|
|
703
778
|
|
|
704
|
-
babel-plugin-transform-export-extensions@^6.
|
|
705
|
-
version "6.
|
|
706
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.
|
|
779
|
+
babel-plugin-transform-export-extensions@^6.22.0:
|
|
780
|
+
version "6.22.0"
|
|
781
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-export-extensions/-/babel-plugin-transform-export-extensions-6.22.0.tgz#53738b47e75e8218589eea946cbbd39109bbe653"
|
|
707
782
|
dependencies:
|
|
708
783
|
babel-plugin-syntax-export-extensions "^6.8.0"
|
|
709
|
-
babel-runtime "^6.
|
|
784
|
+
babel-runtime "^6.22.0"
|
|
710
785
|
|
|
711
|
-
babel-plugin-transform-flow-strip-types@^6.
|
|
712
|
-
version "6.
|
|
713
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.
|
|
786
|
+
babel-plugin-transform-flow-strip-types@^6.22.0:
|
|
787
|
+
version "6.22.0"
|
|
788
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
|
|
714
789
|
dependencies:
|
|
715
790
|
babel-plugin-syntax-flow "^6.18.0"
|
|
716
|
-
babel-runtime "^6.
|
|
791
|
+
babel-runtime "^6.22.0"
|
|
717
792
|
|
|
718
|
-
babel-plugin-transform-function-bind@^6.
|
|
719
|
-
version "6.
|
|
720
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.
|
|
793
|
+
babel-plugin-transform-function-bind@^6.22.0:
|
|
794
|
+
version "6.22.0"
|
|
795
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-function-bind/-/babel-plugin-transform-function-bind-6.22.0.tgz#c6fb8e96ac296a310b8cf8ea401462407ddf6a97"
|
|
721
796
|
dependencies:
|
|
722
797
|
babel-plugin-syntax-function-bind "^6.8.0"
|
|
723
|
-
babel-runtime "^6.
|
|
798
|
+
babel-runtime "^6.22.0"
|
|
724
799
|
|
|
725
|
-
babel-plugin-transform-object-rest-spread@^6.
|
|
726
|
-
version "6.
|
|
727
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.
|
|
800
|
+
babel-plugin-transform-object-rest-spread@^6.22.0:
|
|
801
|
+
version "6.23.0"
|
|
802
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz#875d6bc9be761c58a2ae3feee5dc4895d8c7f921"
|
|
728
803
|
dependencies:
|
|
729
804
|
babel-plugin-syntax-object-rest-spread "^6.8.0"
|
|
730
|
-
babel-runtime "^6.
|
|
805
|
+
babel-runtime "^6.22.0"
|
|
731
806
|
|
|
732
|
-
babel-plugin-transform-react-display-name@^6.
|
|
733
|
-
version "6.
|
|
734
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.
|
|
807
|
+
babel-plugin-transform-react-display-name@^6.23.0:
|
|
808
|
+
version "6.23.0"
|
|
809
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz#4398910c358441dc4cef18787264d0412ed36b37"
|
|
735
810
|
dependencies:
|
|
736
|
-
babel-runtime "^6.
|
|
811
|
+
babel-runtime "^6.22.0"
|
|
737
812
|
|
|
738
|
-
babel-plugin-transform-react-jsx-self@^6.
|
|
739
|
-
version "6.
|
|
740
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.
|
|
813
|
+
babel-plugin-transform-react-jsx-self@^6.22.0:
|
|
814
|
+
version "6.22.0"
|
|
815
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
|
|
741
816
|
dependencies:
|
|
742
817
|
babel-plugin-syntax-jsx "^6.8.0"
|
|
743
|
-
babel-runtime "^6.
|
|
818
|
+
babel-runtime "^6.22.0"
|
|
744
819
|
|
|
745
|
-
babel-plugin-transform-react-jsx-source@^6.
|
|
746
|
-
version "6.
|
|
747
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.
|
|
820
|
+
babel-plugin-transform-react-jsx-source@^6.22.0:
|
|
821
|
+
version "6.22.0"
|
|
822
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
|
|
748
823
|
dependencies:
|
|
749
824
|
babel-plugin-syntax-jsx "^6.8.0"
|
|
750
|
-
babel-runtime "^6.
|
|
825
|
+
babel-runtime "^6.22.0"
|
|
751
826
|
|
|
752
|
-
babel-plugin-transform-react-jsx@^6.
|
|
753
|
-
version "6.
|
|
754
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.
|
|
827
|
+
babel-plugin-transform-react-jsx@^6.23.0:
|
|
828
|
+
version "6.23.0"
|
|
829
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.23.0.tgz#23e892f7f2e759678eb5e4446a8f8e94e81b3470"
|
|
755
830
|
dependencies:
|
|
756
|
-
babel-helper-builder-react-jsx "^6.
|
|
831
|
+
babel-helper-builder-react-jsx "^6.23.0"
|
|
757
832
|
babel-plugin-syntax-jsx "^6.8.0"
|
|
758
|
-
babel-runtime "^6.
|
|
833
|
+
babel-runtime "^6.22.0"
|
|
759
834
|
|
|
760
|
-
babel-plugin-transform-regenerator@^6.
|
|
761
|
-
version "6.
|
|
762
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.
|
|
835
|
+
babel-plugin-transform-regenerator@^6.22.0:
|
|
836
|
+
version "6.22.0"
|
|
837
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6"
|
|
763
838
|
dependencies:
|
|
764
|
-
|
|
765
|
-
babel-types "^6.16.0"
|
|
766
|
-
private "~0.1.5"
|
|
839
|
+
regenerator-transform "0.9.8"
|
|
767
840
|
|
|
768
|
-
babel-plugin-transform-runtime@^6.
|
|
769
|
-
version "6.
|
|
770
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.
|
|
841
|
+
babel-plugin-transform-runtime@^6.23.0:
|
|
842
|
+
version "6.23.0"
|
|
843
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee"
|
|
771
844
|
dependencies:
|
|
772
|
-
babel-runtime "^6.
|
|
845
|
+
babel-runtime "^6.22.0"
|
|
773
846
|
|
|
774
|
-
babel-plugin-transform-strict-mode@^6.
|
|
775
|
-
version "6.
|
|
776
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.
|
|
847
|
+
babel-plugin-transform-strict-mode@^6.22.0:
|
|
848
|
+
version "6.22.0"
|
|
849
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.22.0.tgz#e008df01340fdc87e959da65991b7e05970c8c7c"
|
|
777
850
|
dependencies:
|
|
778
|
-
babel-runtime "^6.
|
|
779
|
-
babel-types "^6.
|
|
851
|
+
babel-runtime "^6.22.0"
|
|
852
|
+
babel-types "^6.22.0"
|
|
780
853
|
|
|
781
|
-
babel-polyfill@^6.
|
|
854
|
+
babel-polyfill@^6.23.0:
|
|
855
|
+
version "6.23.0"
|
|
856
|
+
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d"
|
|
857
|
+
dependencies:
|
|
858
|
+
babel-runtime "^6.22.0"
|
|
859
|
+
core-js "^2.4.0"
|
|
860
|
+
regenerator-runtime "^0.10.0"
|
|
861
|
+
|
|
862
|
+
babel-polyfill@^6.3.14:
|
|
782
863
|
version "6.16.0"
|
|
783
864
|
resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.16.0.tgz#2d45021df87e26a374b6d4d1a9c65964d17f2422"
|
|
784
865
|
dependencies:
|
|
@@ -786,81 +867,86 @@ babel-polyfill@^6.16.0, babel-polyfill@^6.3.14:
|
|
|
786
867
|
core-js "^2.4.0"
|
|
787
868
|
regenerator-runtime "^0.9.5"
|
|
788
869
|
|
|
789
|
-
babel-preset-es2015@^6.
|
|
790
|
-
version "6.
|
|
791
|
-
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.
|
|
792
|
-
dependencies:
|
|
793
|
-
babel-plugin-check-es2015-constants "^6.
|
|
794
|
-
babel-plugin-transform-es2015-arrow-functions "^6.
|
|
795
|
-
babel-plugin-transform-es2015-block-scoped-functions "^6.
|
|
796
|
-
babel-plugin-transform-es2015-block-scoping "^6.
|
|
797
|
-
babel-plugin-transform-es2015-classes "^6.
|
|
798
|
-
babel-plugin-transform-es2015-computed-properties "^6.
|
|
799
|
-
babel-plugin-transform-es2015-destructuring "^6.
|
|
800
|
-
babel-plugin-transform-es2015-duplicate-keys "^6.
|
|
801
|
-
babel-plugin-transform-es2015-for-of "^6.
|
|
802
|
-
babel-plugin-transform-es2015-function-name "^6.
|
|
803
|
-
babel-plugin-transform-es2015-literals "^6.
|
|
804
|
-
babel-plugin-transform-es2015-modules-amd "^6.
|
|
805
|
-
babel-plugin-transform-es2015-modules-commonjs "^6.
|
|
806
|
-
babel-plugin-transform-es2015-modules-systemjs "^6.
|
|
807
|
-
babel-plugin-transform-es2015-modules-umd "^6.
|
|
808
|
-
babel-plugin-transform-es2015-object-super "^6.
|
|
809
|
-
babel-plugin-transform-es2015-parameters "^6.
|
|
810
|
-
babel-plugin-transform-es2015-shorthand-properties "^6.
|
|
811
|
-
babel-plugin-transform-es2015-spread "^6.
|
|
812
|
-
babel-plugin-transform-es2015-sticky-regex "^6.
|
|
813
|
-
babel-plugin-transform-es2015-template-literals "^6.
|
|
814
|
-
babel-plugin-transform-es2015-typeof-symbol "^6.
|
|
815
|
-
babel-plugin-transform-es2015-unicode-regex "^6.
|
|
816
|
-
babel-plugin-transform-regenerator "^6.
|
|
817
|
-
|
|
818
|
-
babel-preset-
|
|
819
|
-
version "6.
|
|
820
|
-
resolved "https://registry.yarnpkg.com/babel-preset-
|
|
870
|
+
babel-preset-es2015@^6.22.0:
|
|
871
|
+
version "6.22.0"
|
|
872
|
+
resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.22.0.tgz#af5a98ecb35eb8af764ad8a5a05eb36dc4386835"
|
|
873
|
+
dependencies:
|
|
874
|
+
babel-plugin-check-es2015-constants "^6.22.0"
|
|
875
|
+
babel-plugin-transform-es2015-arrow-functions "^6.22.0"
|
|
876
|
+
babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
|
|
877
|
+
babel-plugin-transform-es2015-block-scoping "^6.22.0"
|
|
878
|
+
babel-plugin-transform-es2015-classes "^6.22.0"
|
|
879
|
+
babel-plugin-transform-es2015-computed-properties "^6.22.0"
|
|
880
|
+
babel-plugin-transform-es2015-destructuring "^6.22.0"
|
|
881
|
+
babel-plugin-transform-es2015-duplicate-keys "^6.22.0"
|
|
882
|
+
babel-plugin-transform-es2015-for-of "^6.22.0"
|
|
883
|
+
babel-plugin-transform-es2015-function-name "^6.22.0"
|
|
884
|
+
babel-plugin-transform-es2015-literals "^6.22.0"
|
|
885
|
+
babel-plugin-transform-es2015-modules-amd "^6.22.0"
|
|
886
|
+
babel-plugin-transform-es2015-modules-commonjs "^6.22.0"
|
|
887
|
+
babel-plugin-transform-es2015-modules-systemjs "^6.22.0"
|
|
888
|
+
babel-plugin-transform-es2015-modules-umd "^6.22.0"
|
|
889
|
+
babel-plugin-transform-es2015-object-super "^6.22.0"
|
|
890
|
+
babel-plugin-transform-es2015-parameters "^6.22.0"
|
|
891
|
+
babel-plugin-transform-es2015-shorthand-properties "^6.22.0"
|
|
892
|
+
babel-plugin-transform-es2015-spread "^6.22.0"
|
|
893
|
+
babel-plugin-transform-es2015-sticky-regex "^6.22.0"
|
|
894
|
+
babel-plugin-transform-es2015-template-literals "^6.22.0"
|
|
895
|
+
babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
|
|
896
|
+
babel-plugin-transform-es2015-unicode-regex "^6.22.0"
|
|
897
|
+
babel-plugin-transform-regenerator "^6.22.0"
|
|
898
|
+
|
|
899
|
+
babel-preset-flow@^6.23.0:
|
|
900
|
+
version "6.23.0"
|
|
901
|
+
resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d"
|
|
902
|
+
dependencies:
|
|
903
|
+
babel-plugin-transform-flow-strip-types "^6.22.0"
|
|
904
|
+
|
|
905
|
+
babel-preset-react@^6.23.0:
|
|
906
|
+
version "6.23.0"
|
|
907
|
+
resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.23.0.tgz#eb7cee4de98a3f94502c28565332da9819455195"
|
|
821
908
|
dependencies:
|
|
822
|
-
babel-plugin-syntax-flow "^6.3.13"
|
|
823
909
|
babel-plugin-syntax-jsx "^6.3.13"
|
|
824
|
-
babel-plugin-transform-
|
|
825
|
-
babel-plugin-transform-react-
|
|
826
|
-
babel-plugin-transform-react-jsx "^6.
|
|
827
|
-
babel-plugin-transform-react-jsx-
|
|
828
|
-
babel-
|
|
910
|
+
babel-plugin-transform-react-display-name "^6.23.0"
|
|
911
|
+
babel-plugin-transform-react-jsx "^6.23.0"
|
|
912
|
+
babel-plugin-transform-react-jsx-self "^6.22.0"
|
|
913
|
+
babel-plugin-transform-react-jsx-source "^6.22.0"
|
|
914
|
+
babel-preset-flow "^6.23.0"
|
|
829
915
|
|
|
830
|
-
babel-preset-stage-0@^6.
|
|
831
|
-
version "6.
|
|
832
|
-
resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.
|
|
916
|
+
babel-preset-stage-0@^6.22.0:
|
|
917
|
+
version "6.22.0"
|
|
918
|
+
resolved "https://registry.yarnpkg.com/babel-preset-stage-0/-/babel-preset-stage-0-6.22.0.tgz#707eeb5b415da769eff9c42f4547f644f9296ef9"
|
|
833
919
|
dependencies:
|
|
834
|
-
babel-plugin-transform-do-expressions "^6.
|
|
835
|
-
babel-plugin-transform-function-bind "^6.
|
|
836
|
-
babel-preset-stage-1 "^6.
|
|
920
|
+
babel-plugin-transform-do-expressions "^6.22.0"
|
|
921
|
+
babel-plugin-transform-function-bind "^6.22.0"
|
|
922
|
+
babel-preset-stage-1 "^6.22.0"
|
|
837
923
|
|
|
838
|
-
babel-preset-stage-1@^6.
|
|
839
|
-
version "6.
|
|
840
|
-
resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.
|
|
924
|
+
babel-preset-stage-1@^6.22.0:
|
|
925
|
+
version "6.22.0"
|
|
926
|
+
resolved "https://registry.yarnpkg.com/babel-preset-stage-1/-/babel-preset-stage-1-6.22.0.tgz#7da05bffea6ad5a10aef93e320cfc6dd465dbc1a"
|
|
841
927
|
dependencies:
|
|
842
|
-
babel-plugin-transform-class-constructor-call "^6.
|
|
843
|
-
babel-plugin-transform-export-extensions "^6.
|
|
844
|
-
babel-preset-stage-2 "^6.
|
|
928
|
+
babel-plugin-transform-class-constructor-call "^6.22.0"
|
|
929
|
+
babel-plugin-transform-export-extensions "^6.22.0"
|
|
930
|
+
babel-preset-stage-2 "^6.22.0"
|
|
845
931
|
|
|
846
|
-
babel-preset-stage-2@^6.
|
|
847
|
-
version "6.
|
|
848
|
-
resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.
|
|
932
|
+
babel-preset-stage-2@^6.22.0:
|
|
933
|
+
version "6.22.0"
|
|
934
|
+
resolved "https://registry.yarnpkg.com/babel-preset-stage-2/-/babel-preset-stage-2-6.22.0.tgz#ccd565f19c245cade394b21216df704a73b27c07"
|
|
849
935
|
dependencies:
|
|
850
936
|
babel-plugin-syntax-dynamic-import "^6.18.0"
|
|
851
|
-
babel-plugin-transform-class-properties "^6.
|
|
852
|
-
babel-plugin-transform-decorators "^6.
|
|
853
|
-
babel-preset-stage-3 "^6.
|
|
937
|
+
babel-plugin-transform-class-properties "^6.22.0"
|
|
938
|
+
babel-plugin-transform-decorators "^6.22.0"
|
|
939
|
+
babel-preset-stage-3 "^6.22.0"
|
|
854
940
|
|
|
855
|
-
babel-preset-stage-3@^6.
|
|
856
|
-
version "6.
|
|
857
|
-
resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.
|
|
941
|
+
babel-preset-stage-3@^6.22.0:
|
|
942
|
+
version "6.22.0"
|
|
943
|
+
resolved "https://registry.yarnpkg.com/babel-preset-stage-3/-/babel-preset-stage-3-6.22.0.tgz#a4e92bbace7456fafdf651d7a7657ee0bbca9c2e"
|
|
858
944
|
dependencies:
|
|
859
|
-
babel-plugin-syntax-trailing-function-commas "^6.
|
|
860
|
-
babel-plugin-transform-async-generator-functions "^6.
|
|
861
|
-
babel-plugin-transform-async-to-generator "^6.
|
|
862
|
-
babel-plugin-transform-exponentiation-operator "^6.
|
|
863
|
-
babel-plugin-transform-object-rest-spread "^6.
|
|
945
|
+
babel-plugin-syntax-trailing-function-commas "^6.22.0"
|
|
946
|
+
babel-plugin-transform-async-generator-functions "^6.22.0"
|
|
947
|
+
babel-plugin-transform-async-to-generator "^6.22.0"
|
|
948
|
+
babel-plugin-transform-exponentiation-operator "^6.22.0"
|
|
949
|
+
babel-plugin-transform-object-rest-spread "^6.22.0"
|
|
864
950
|
|
|
865
951
|
babel-register@^6.18.0, babel-register@^6.3.13:
|
|
866
952
|
version "6.18.0"
|
|
@@ -874,6 +960,18 @@ babel-register@^6.18.0, babel-register@^6.3.13:
|
|
|
874
960
|
mkdirp "^0.5.1"
|
|
875
961
|
source-map-support "^0.4.2"
|
|
876
962
|
|
|
963
|
+
babel-register@^6.23.0:
|
|
964
|
+
version "6.23.0"
|
|
965
|
+
resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.23.0.tgz#c9aa3d4cca94b51da34826c4a0f9e08145d74ff3"
|
|
966
|
+
dependencies:
|
|
967
|
+
babel-core "^6.23.0"
|
|
968
|
+
babel-runtime "^6.22.0"
|
|
969
|
+
core-js "^2.4.0"
|
|
970
|
+
home-or-tmp "^2.0.0"
|
|
971
|
+
lodash "^4.2.0"
|
|
972
|
+
mkdirp "^0.5.1"
|
|
973
|
+
source-map-support "^0.4.2"
|
|
974
|
+
|
|
877
975
|
babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.20.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1:
|
|
878
976
|
version "6.20.0"
|
|
879
977
|
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.20.0.tgz#87300bdcf4cd770f09bf0048c64204e17806d16f"
|
|
@@ -881,6 +979,13 @@ babel-runtime@^6.0.0, babel-runtime@^6.11.6, babel-runtime@^6.20.0, babel-runtim
|
|
|
881
979
|
core-js "^2.4.0"
|
|
882
980
|
regenerator-runtime "^0.10.0"
|
|
883
981
|
|
|
982
|
+
babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.23.0:
|
|
983
|
+
version "6.23.0"
|
|
984
|
+
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.23.0.tgz#0a9489f144de70efb3ce4300accdb329e2fc543b"
|
|
985
|
+
dependencies:
|
|
986
|
+
core-js "^2.4.0"
|
|
987
|
+
regenerator-runtime "^0.10.0"
|
|
988
|
+
|
|
884
989
|
babel-tape-runner@^2.0.1:
|
|
885
990
|
version "2.0.1"
|
|
886
991
|
resolved "https://registry.yarnpkg.com/babel-tape-runner/-/babel-tape-runner-2.0.1.tgz#9c012ff9ab0f30020ac11fcc8e848f203f222173"
|
|
@@ -889,7 +994,7 @@ babel-tape-runner@^2.0.1:
|
|
|
889
994
|
babel-register "^6.3.13"
|
|
890
995
|
glob "^6.0.1"
|
|
891
996
|
|
|
892
|
-
babel-template@^6.
|
|
997
|
+
babel-template@^6.16.0:
|
|
893
998
|
version "6.16.0"
|
|
894
999
|
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.16.0.tgz#e149dd1a9f03a35f817ddbc4d0481988e7ebc8ca"
|
|
895
1000
|
dependencies:
|
|
@@ -899,7 +1004,17 @@ babel-template@^6.14.0, babel-template@^6.15.0, babel-template@^6.16.0, babel-te
|
|
|
899
1004
|
babylon "^6.11.0"
|
|
900
1005
|
lodash "^4.2.0"
|
|
901
1006
|
|
|
902
|
-
babel-
|
|
1007
|
+
babel-template@^6.22.0, babel-template@^6.23.0:
|
|
1008
|
+
version "6.23.0"
|
|
1009
|
+
resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.23.0.tgz#04d4f270adbb3aa704a8143ae26faa529238e638"
|
|
1010
|
+
dependencies:
|
|
1011
|
+
babel-runtime "^6.22.0"
|
|
1012
|
+
babel-traverse "^6.23.0"
|
|
1013
|
+
babel-types "^6.23.0"
|
|
1014
|
+
babylon "^6.11.0"
|
|
1015
|
+
lodash "^4.2.0"
|
|
1016
|
+
|
|
1017
|
+
babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.21.0:
|
|
903
1018
|
version "6.21.0"
|
|
904
1019
|
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.21.0.tgz#69c6365804f1a4f69eb1213f85b00a818b8c21ad"
|
|
905
1020
|
dependencies:
|
|
@@ -913,7 +1028,30 @@ babel-traverse@^6.15.0, babel-traverse@^6.16.0, babel-traverse@^6.18.0, babel-tr
|
|
|
913
1028
|
invariant "^2.2.0"
|
|
914
1029
|
lodash "^4.2.0"
|
|
915
1030
|
|
|
916
|
-
babel-
|
|
1031
|
+
babel-traverse@^6.22.0, babel-traverse@^6.23.0, babel-traverse@^6.23.1:
|
|
1032
|
+
version "6.23.1"
|
|
1033
|
+
resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.23.1.tgz#d3cb59010ecd06a97d81310065f966b699e14f48"
|
|
1034
|
+
dependencies:
|
|
1035
|
+
babel-code-frame "^6.22.0"
|
|
1036
|
+
babel-messages "^6.23.0"
|
|
1037
|
+
babel-runtime "^6.22.0"
|
|
1038
|
+
babel-types "^6.23.0"
|
|
1039
|
+
babylon "^6.15.0"
|
|
1040
|
+
debug "^2.2.0"
|
|
1041
|
+
globals "^9.0.0"
|
|
1042
|
+
invariant "^2.2.0"
|
|
1043
|
+
lodash "^4.2.0"
|
|
1044
|
+
|
|
1045
|
+
babel-types@^6.15.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23.0:
|
|
1046
|
+
version "6.23.0"
|
|
1047
|
+
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.23.0.tgz#bb17179d7538bad38cd0c9e115d340f77e7e9acf"
|
|
1048
|
+
dependencies:
|
|
1049
|
+
babel-runtime "^6.22.0"
|
|
1050
|
+
esutils "^2.0.2"
|
|
1051
|
+
lodash "^4.2.0"
|
|
1052
|
+
to-fast-properties "^1.0.1"
|
|
1053
|
+
|
|
1054
|
+
babel-types@^6.16.0, babel-types@^6.21.0:
|
|
917
1055
|
version "6.21.0"
|
|
918
1056
|
resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.21.0.tgz#314b92168891ef6d3806b7f7a917fdf87c11a4b2"
|
|
919
1057
|
dependencies:
|
|
@@ -933,6 +1071,10 @@ babylon@^6.11.0, babylon@^6.13.0:
|
|
|
933
1071
|
version "6.13.1"
|
|
934
1072
|
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.13.1.tgz#adca350e088f0467647157652bafead6ddb8dfdb"
|
|
935
1073
|
|
|
1074
|
+
babylon@^6.15.0:
|
|
1075
|
+
version "6.16.1"
|
|
1076
|
+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
|
|
1077
|
+
|
|
936
1078
|
balanced-match@^0.4.1:
|
|
937
1079
|
version "0.4.2"
|
|
938
1080
|
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
|
|
@@ -967,6 +1109,10 @@ blue-tape@^1.0.0:
|
|
|
967
1109
|
dependencies:
|
|
968
1110
|
tape ">=2.0.0 <5.0.0"
|
|
969
1111
|
|
|
1112
|
+
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
|
1113
|
+
version "4.11.6"
|
|
1114
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.6.tgz#53344adb14617a13f6e8dd2ce28905d1c0ba3215"
|
|
1115
|
+
|
|
970
1116
|
boom@2.x.x:
|
|
971
1117
|
version "2.10.1"
|
|
972
1118
|
resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
|
|
@@ -988,12 +1134,55 @@ braces@^1.8.2:
|
|
|
988
1134
|
preserve "^0.2.0"
|
|
989
1135
|
repeat-element "^1.1.2"
|
|
990
1136
|
|
|
991
|
-
|
|
992
|
-
version "
|
|
993
|
-
resolved "https://registry.yarnpkg.com/
|
|
1137
|
+
brorand@^1.0.1:
|
|
1138
|
+
version "1.1.0"
|
|
1139
|
+
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
|
1140
|
+
|
|
1141
|
+
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
|
|
1142
|
+
version "1.0.6"
|
|
1143
|
+
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a"
|
|
994
1144
|
dependencies:
|
|
1145
|
+
buffer-xor "^1.0.2"
|
|
1146
|
+
cipher-base "^1.0.0"
|
|
1147
|
+
create-hash "^1.1.0"
|
|
1148
|
+
evp_bytestokey "^1.0.0"
|
|
995
1149
|
inherits "^2.0.1"
|
|
996
1150
|
|
|
1151
|
+
browserify-cipher@^1.0.0:
|
|
1152
|
+
version "1.0.0"
|
|
1153
|
+
resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a"
|
|
1154
|
+
dependencies:
|
|
1155
|
+
browserify-aes "^1.0.4"
|
|
1156
|
+
browserify-des "^1.0.0"
|
|
1157
|
+
evp_bytestokey "^1.0.0"
|
|
1158
|
+
|
|
1159
|
+
browserify-des@^1.0.0:
|
|
1160
|
+
version "1.0.0"
|
|
1161
|
+
resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd"
|
|
1162
|
+
dependencies:
|
|
1163
|
+
cipher-base "^1.0.1"
|
|
1164
|
+
des.js "^1.0.0"
|
|
1165
|
+
inherits "^2.0.1"
|
|
1166
|
+
|
|
1167
|
+
browserify-rsa@^4.0.0:
|
|
1168
|
+
version "4.0.1"
|
|
1169
|
+
resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524"
|
|
1170
|
+
dependencies:
|
|
1171
|
+
bn.js "^4.1.0"
|
|
1172
|
+
randombytes "^2.0.1"
|
|
1173
|
+
|
|
1174
|
+
browserify-sign@^4.0.0:
|
|
1175
|
+
version "4.0.0"
|
|
1176
|
+
resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.0.tgz#10773910c3c206d5420a46aad8694f820b85968f"
|
|
1177
|
+
dependencies:
|
|
1178
|
+
bn.js "^4.1.1"
|
|
1179
|
+
browserify-rsa "^4.0.0"
|
|
1180
|
+
create-hash "^1.1.0"
|
|
1181
|
+
create-hmac "^1.1.2"
|
|
1182
|
+
elliptic "^6.0.0"
|
|
1183
|
+
inherits "^2.0.1"
|
|
1184
|
+
parse-asn1 "^5.0.0"
|
|
1185
|
+
|
|
997
1186
|
browserify-zlib@^0.1.4:
|
|
998
1187
|
version "0.1.4"
|
|
999
1188
|
resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
|
|
@@ -1004,7 +1193,11 @@ buffer-shims@^1.0.0:
|
|
|
1004
1193
|
version "1.0.0"
|
|
1005
1194
|
resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51"
|
|
1006
1195
|
|
|
1007
|
-
buffer@^
|
|
1196
|
+
buffer-xor@^1.0.2:
|
|
1197
|
+
version "1.0.3"
|
|
1198
|
+
resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
|
|
1199
|
+
|
|
1200
|
+
buffer@^4.3.0:
|
|
1008
1201
|
version "4.9.1"
|
|
1009
1202
|
resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
|
|
1010
1203
|
dependencies:
|
|
@@ -1012,7 +1205,7 @@ buffer@^4.9.0:
|
|
|
1012
1205
|
ieee754 "^1.1.4"
|
|
1013
1206
|
isarray "^1.0.0"
|
|
1014
1207
|
|
|
1015
|
-
builtin-modules@^1.1.1:
|
|
1208
|
+
builtin-modules@^1.0.0, builtin-modules@^1.1.1:
|
|
1016
1209
|
version "1.1.1"
|
|
1017
1210
|
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
|
1018
1211
|
|
|
@@ -1034,6 +1227,10 @@ camelcase@^1.0.2:
|
|
|
1034
1227
|
version "1.2.1"
|
|
1035
1228
|
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
|
|
1036
1229
|
|
|
1230
|
+
camelcase@^3.0.0:
|
|
1231
|
+
version "3.0.0"
|
|
1232
|
+
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"
|
|
1233
|
+
|
|
1037
1234
|
caseless@~0.11.0:
|
|
1038
1235
|
version "0.11.0"
|
|
1039
1236
|
resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7"
|
|
@@ -1055,7 +1252,7 @@ chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
|
|
|
1055
1252
|
strip-ansi "^3.0.0"
|
|
1056
1253
|
supports-color "^2.0.0"
|
|
1057
1254
|
|
|
1058
|
-
chokidar@^1.
|
|
1255
|
+
chokidar@^1.4.3, chokidar@^1.6.1:
|
|
1059
1256
|
version "1.6.1"
|
|
1060
1257
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2"
|
|
1061
1258
|
dependencies:
|
|
@@ -1070,6 +1267,12 @@ chokidar@^1.0.0:
|
|
|
1070
1267
|
optionalDependencies:
|
|
1071
1268
|
fsevents "^1.0.0"
|
|
1072
1269
|
|
|
1270
|
+
cipher-base@^1.0.0, cipher-base@^1.0.1:
|
|
1271
|
+
version "1.0.3"
|
|
1272
|
+
resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.3.tgz#eeabf194419ce900da3018c207d212f2a6df0a07"
|
|
1273
|
+
dependencies:
|
|
1274
|
+
inherits "^2.0.1"
|
|
1275
|
+
|
|
1073
1276
|
circular-json@^0.3.0:
|
|
1074
1277
|
version "0.3.1"
|
|
1075
1278
|
resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d"
|
|
@@ -1092,9 +1295,13 @@ cliui@^2.1.0:
|
|
|
1092
1295
|
right-align "^0.1.1"
|
|
1093
1296
|
wordwrap "0.0.2"
|
|
1094
1297
|
|
|
1095
|
-
|
|
1096
|
-
version "
|
|
1097
|
-
resolved "https://registry.yarnpkg.com/
|
|
1298
|
+
cliui@^3.2.0:
|
|
1299
|
+
version "3.2.0"
|
|
1300
|
+
resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d"
|
|
1301
|
+
dependencies:
|
|
1302
|
+
string-width "^1.0.1"
|
|
1303
|
+
strip-ansi "^3.0.1"
|
|
1304
|
+
wrap-ansi "^2.0.0"
|
|
1098
1305
|
|
|
1099
1306
|
co@^4.6.0:
|
|
1100
1307
|
version "4.6.0"
|
|
@@ -1172,26 +1379,55 @@ core-util-is@~1.0.0:
|
|
|
1172
1379
|
version "1.0.2"
|
|
1173
1380
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
|
1174
1381
|
|
|
1382
|
+
create-ecdh@^4.0.0:
|
|
1383
|
+
version "4.0.0"
|
|
1384
|
+
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d"
|
|
1385
|
+
dependencies:
|
|
1386
|
+
bn.js "^4.1.0"
|
|
1387
|
+
elliptic "^6.0.0"
|
|
1388
|
+
|
|
1389
|
+
create-hash@^1.1.0, create-hash@^1.1.1:
|
|
1390
|
+
version "1.1.2"
|
|
1391
|
+
resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.2.tgz#51210062d7bb7479f6c65bb41a92208b1d61abad"
|
|
1392
|
+
dependencies:
|
|
1393
|
+
cipher-base "^1.0.1"
|
|
1394
|
+
inherits "^2.0.1"
|
|
1395
|
+
ripemd160 "^1.0.0"
|
|
1396
|
+
sha.js "^2.3.6"
|
|
1397
|
+
|
|
1398
|
+
create-hmac@^1.1.0, create-hmac@^1.1.2:
|
|
1399
|
+
version "1.1.4"
|
|
1400
|
+
resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.4.tgz#d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170"
|
|
1401
|
+
dependencies:
|
|
1402
|
+
create-hash "^1.1.0"
|
|
1403
|
+
inherits "^2.0.1"
|
|
1404
|
+
|
|
1175
1405
|
cryptiles@2.x.x:
|
|
1176
1406
|
version "2.0.5"
|
|
1177
1407
|
resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8"
|
|
1178
1408
|
dependencies:
|
|
1179
1409
|
boom "2.x.x"
|
|
1180
1410
|
|
|
1181
|
-
crypto-browserify
|
|
1182
|
-
version "3.
|
|
1183
|
-
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.
|
|
1411
|
+
crypto-browserify@^3.11.0:
|
|
1412
|
+
version "3.11.0"
|
|
1413
|
+
resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.0.tgz#3652a0906ab9b2a7e0c3ce66a408e957a2485522"
|
|
1184
1414
|
dependencies:
|
|
1185
|
-
browserify-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1415
|
+
browserify-cipher "^1.0.0"
|
|
1416
|
+
browserify-sign "^4.0.0"
|
|
1417
|
+
create-ecdh "^4.0.0"
|
|
1418
|
+
create-hash "^1.1.0"
|
|
1419
|
+
create-hmac "^1.1.0"
|
|
1420
|
+
diffie-hellman "^5.0.0"
|
|
1421
|
+
inherits "^2.0.1"
|
|
1422
|
+
pbkdf2 "^3.0.3"
|
|
1423
|
+
public-encrypt "^4.0.0"
|
|
1424
|
+
randombytes "^2.0.0"
|
|
1189
1425
|
|
|
1190
|
-
cssom@0.3.x, "cssom@>= 0.3.
|
|
1191
|
-
version "0.3.
|
|
1192
|
-
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.
|
|
1426
|
+
cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0":
|
|
1427
|
+
version "0.3.2"
|
|
1428
|
+
resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.2.tgz#b8036170c79f07a90ff2f16e22284027a243848b"
|
|
1193
1429
|
|
|
1194
|
-
"cssstyle@>= 0.2.
|
|
1430
|
+
"cssstyle@>= 0.2.37 < 0.3.0":
|
|
1195
1431
|
version "0.2.37"
|
|
1196
1432
|
resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54"
|
|
1197
1433
|
dependencies:
|
|
@@ -1223,7 +1459,7 @@ debug@2, debug@2.2.0, debug@^2.1.1, debug@^2.2.0, debug@~2.2.0:
|
|
|
1223
1459
|
dependencies:
|
|
1224
1460
|
ms "0.7.1"
|
|
1225
1461
|
|
|
1226
|
-
decamelize@^1.0.0:
|
|
1462
|
+
decamelize@^1.0.0, decamelize@^1.1.1:
|
|
1227
1463
|
version "1.2.0"
|
|
1228
1464
|
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
|
|
1229
1465
|
|
|
@@ -1270,12 +1506,27 @@ delegates@^1.0.0:
|
|
|
1270
1506
|
version "1.0.0"
|
|
1271
1507
|
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
|
|
1272
1508
|
|
|
1509
|
+
des.js@^1.0.0:
|
|
1510
|
+
version "1.0.0"
|
|
1511
|
+
resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"
|
|
1512
|
+
dependencies:
|
|
1513
|
+
inherits "^2.0.1"
|
|
1514
|
+
minimalistic-assert "^1.0.0"
|
|
1515
|
+
|
|
1273
1516
|
detect-indent@^4.0.0:
|
|
1274
1517
|
version "4.0.0"
|
|
1275
1518
|
resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
|
|
1276
1519
|
dependencies:
|
|
1277
1520
|
repeating "^2.0.0"
|
|
1278
1521
|
|
|
1522
|
+
diffie-hellman@^5.0.0:
|
|
1523
|
+
version "5.0.2"
|
|
1524
|
+
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e"
|
|
1525
|
+
dependencies:
|
|
1526
|
+
bn.js "^4.1.0"
|
|
1527
|
+
miller-rabin "^4.0.0"
|
|
1528
|
+
randombytes "^2.0.0"
|
|
1529
|
+
|
|
1279
1530
|
doctrine@1.5.0, doctrine@^1.2.2:
|
|
1280
1531
|
version "1.5.0"
|
|
1281
1532
|
resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa"
|
|
@@ -1301,6 +1552,22 @@ ecc-jsbn@~0.1.1:
|
|
|
1301
1552
|
dependencies:
|
|
1302
1553
|
jsbn "~0.1.0"
|
|
1303
1554
|
|
|
1555
|
+
elliptic@^6.0.0:
|
|
1556
|
+
version "6.4.0"
|
|
1557
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df"
|
|
1558
|
+
dependencies:
|
|
1559
|
+
bn.js "^4.4.0"
|
|
1560
|
+
brorand "^1.0.1"
|
|
1561
|
+
hash.js "^1.0.0"
|
|
1562
|
+
hmac-drbg "^1.0.0"
|
|
1563
|
+
inherits "^2.0.1"
|
|
1564
|
+
minimalistic-assert "^1.0.0"
|
|
1565
|
+
minimalistic-crypto-utils "^1.0.0"
|
|
1566
|
+
|
|
1567
|
+
emoji-regex@^6.1.0:
|
|
1568
|
+
version "6.1.0"
|
|
1569
|
+
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.1.0.tgz#d14ef743a7dfa6eaf436882bd1920a4aed84dd94"
|
|
1570
|
+
|
|
1304
1571
|
emojis-list@^2.0.0:
|
|
1305
1572
|
version "2.1.0"
|
|
1306
1573
|
resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
|
|
@@ -1311,13 +1578,14 @@ encoding@^0.1.11:
|
|
|
1311
1578
|
dependencies:
|
|
1312
1579
|
iconv-lite "~0.4.13"
|
|
1313
1580
|
|
|
1314
|
-
enhanced-resolve
|
|
1315
|
-
version "
|
|
1316
|
-
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-
|
|
1581
|
+
enhanced-resolve@^3.0.0:
|
|
1582
|
+
version "3.1.0"
|
|
1583
|
+
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.1.0.tgz#9f4b626f577245edcf4b2ad83d86e17f4f421dec"
|
|
1317
1584
|
dependencies:
|
|
1318
1585
|
graceful-fs "^4.1.2"
|
|
1319
|
-
memory-fs "^0.
|
|
1320
|
-
|
|
1586
|
+
memory-fs "^0.4.0"
|
|
1587
|
+
object-assign "^4.0.1"
|
|
1588
|
+
tapable "^0.2.5"
|
|
1321
1589
|
|
|
1322
1590
|
errno@^0.1.3:
|
|
1323
1591
|
version "0.1.4"
|
|
@@ -1325,6 +1593,12 @@ errno@^0.1.3:
|
|
|
1325
1593
|
dependencies:
|
|
1326
1594
|
prr "~0.0.0"
|
|
1327
1595
|
|
|
1596
|
+
error-ex@^1.2.0:
|
|
1597
|
+
version "1.3.0"
|
|
1598
|
+
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.0.tgz#e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"
|
|
1599
|
+
dependencies:
|
|
1600
|
+
is-arrayish "^0.2.1"
|
|
1601
|
+
|
|
1328
1602
|
es-abstract@^1.5.0:
|
|
1329
1603
|
version "1.6.1"
|
|
1330
1604
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.6.1.tgz#bb8a2064120abcf928a086ea3d9043114285ec99"
|
|
@@ -1427,22 +1701,22 @@ escope@^3.6.0:
|
|
|
1427
1701
|
esrecurse "^4.1.0"
|
|
1428
1702
|
estraverse "^4.1.1"
|
|
1429
1703
|
|
|
1430
|
-
eslint-config-airbnb-base@^
|
|
1431
|
-
version "
|
|
1432
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-
|
|
1704
|
+
eslint-config-airbnb-base@^11.1.0:
|
|
1705
|
+
version "11.1.0"
|
|
1706
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.1.0.tgz#dc9b3ec70b8c74dcbe6d6257c9da3992c39ca2ca"
|
|
1433
1707
|
|
|
1434
|
-
eslint-config-airbnb@^
|
|
1435
|
-
version "
|
|
1436
|
-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-
|
|
1708
|
+
eslint-config-airbnb@^14.1.0:
|
|
1709
|
+
version "14.1.0"
|
|
1710
|
+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-14.1.0.tgz#355d290040bbf8e00bf8b4b19f4b70cbe7c2317f"
|
|
1437
1711
|
dependencies:
|
|
1438
|
-
eslint-config-airbnb-base "^
|
|
1712
|
+
eslint-config-airbnb-base "^11.1.0"
|
|
1439
1713
|
|
|
1440
|
-
eslint-config-shakacode@^
|
|
1441
|
-
version "
|
|
1442
|
-
resolved "https://registry.yarnpkg.com/eslint-config-shakacode/-/eslint-config-shakacode-
|
|
1714
|
+
eslint-config-shakacode@^14.1.1:
|
|
1715
|
+
version "14.1.1"
|
|
1716
|
+
resolved "https://registry.yarnpkg.com/eslint-config-shakacode/-/eslint-config-shakacode-14.1.1.tgz#bc31841c20799435c14ae7b008f04fc8e1d7f97a"
|
|
1443
1717
|
dependencies:
|
|
1444
1718
|
babel-eslint "^7.1.1"
|
|
1445
|
-
eslint-config-airbnb "^
|
|
1719
|
+
eslint-config-airbnb "^14.1.0"
|
|
1446
1720
|
|
|
1447
1721
|
eslint-import-resolver-node@^0.2.0:
|
|
1448
1722
|
version "0.2.3"
|
|
@@ -1459,7 +1733,7 @@ eslint-module-utils@^2.0.0:
|
|
|
1459
1733
|
debug "2.2.0"
|
|
1460
1734
|
pkg-dir "^1.0.0"
|
|
1461
1735
|
|
|
1462
|
-
eslint-plugin-import@^2.
|
|
1736
|
+
eslint-plugin-import@^2.2.0:
|
|
1463
1737
|
version "2.2.0"
|
|
1464
1738
|
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.2.0.tgz#72ba306fad305d67c4816348a4699a4229ac8b4e"
|
|
1465
1739
|
dependencies:
|
|
@@ -1474,25 +1748,30 @@ eslint-plugin-import@^2.1.0:
|
|
|
1474
1748
|
minimatch "^3.0.3"
|
|
1475
1749
|
pkg-up "^1.0.0"
|
|
1476
1750
|
|
|
1477
|
-
eslint-plugin-jsx-a11y@^
|
|
1478
|
-
version "
|
|
1479
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-
|
|
1751
|
+
eslint-plugin-jsx-a11y@^4.0.0:
|
|
1752
|
+
version "4.0.0"
|
|
1753
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-4.0.0.tgz#779bb0fe7b08da564a422624911de10061e048ee"
|
|
1480
1754
|
dependencies:
|
|
1755
|
+
aria-query "^0.3.0"
|
|
1756
|
+
ast-types-flow "0.0.7"
|
|
1481
1757
|
damerau-levenshtein "^1.0.0"
|
|
1758
|
+
emoji-regex "^6.1.0"
|
|
1482
1759
|
jsx-ast-utils "^1.0.0"
|
|
1483
1760
|
object-assign "^4.0.1"
|
|
1484
1761
|
|
|
1485
|
-
eslint-plugin-react@^6.
|
|
1486
|
-
version "6.
|
|
1487
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.
|
|
1762
|
+
eslint-plugin-react@^6.10.0:
|
|
1763
|
+
version "6.10.0"
|
|
1764
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-6.10.0.tgz#9c48b48d101554b5355413e7c64238abde6ef1ef"
|
|
1488
1765
|
dependencies:
|
|
1489
1766
|
array.prototype.find "^2.0.1"
|
|
1490
1767
|
doctrine "^1.2.2"
|
|
1768
|
+
has "^1.0.1"
|
|
1491
1769
|
jsx-ast-utils "^1.3.4"
|
|
1770
|
+
object.assign "^4.0.4"
|
|
1492
1771
|
|
|
1493
|
-
eslint@^3.
|
|
1494
|
-
version "3.
|
|
1495
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.
|
|
1772
|
+
eslint@^3.16.1:
|
|
1773
|
+
version "3.16.1"
|
|
1774
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.16.1.tgz#9bc31fc7341692cf772e80607508f67d711c5609"
|
|
1496
1775
|
dependencies:
|
|
1497
1776
|
babel-code-frame "^6.16.0"
|
|
1498
1777
|
chalk "^1.1.3"
|
|
@@ -1574,6 +1853,12 @@ events@^1.0.0:
|
|
|
1574
1853
|
version "1.1.1"
|
|
1575
1854
|
resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
|
|
1576
1855
|
|
|
1856
|
+
evp_bytestokey@^1.0.0:
|
|
1857
|
+
version "1.0.0"
|
|
1858
|
+
resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53"
|
|
1859
|
+
dependencies:
|
|
1860
|
+
create-hash "^1.1.1"
|
|
1861
|
+
|
|
1577
1862
|
exit-hook@^1.0.0:
|
|
1578
1863
|
version "1.1.1"
|
|
1579
1864
|
resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
|
|
@@ -1680,9 +1965,9 @@ flat-cache@^1.2.1:
|
|
|
1680
1965
|
graceful-fs "^4.1.2"
|
|
1681
1966
|
write "^0.2.1"
|
|
1682
1967
|
|
|
1683
|
-
flow-bin@^0.
|
|
1684
|
-
version "0.
|
|
1685
|
-
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.
|
|
1968
|
+
flow-bin@^0.40.0:
|
|
1969
|
+
version "0.40.0"
|
|
1970
|
+
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.40.0.tgz#e10d60846d923124e47f548f16ba60fd8baff5a5"
|
|
1686
1971
|
|
|
1687
1972
|
follow-redirects@0.0.7:
|
|
1688
1973
|
version "0.0.7"
|
|
@@ -1783,6 +2068,10 @@ generate-object-property@^1.1.0:
|
|
|
1783
2068
|
dependencies:
|
|
1784
2069
|
is-property "^1.0.0"
|
|
1785
2070
|
|
|
2071
|
+
get-caller-file@^1.0.1:
|
|
2072
|
+
version "1.0.2"
|
|
2073
|
+
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5"
|
|
2074
|
+
|
|
1786
2075
|
getpass@^0.1.1:
|
|
1787
2076
|
version "0.1.6"
|
|
1788
2077
|
resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6"
|
|
@@ -1822,16 +2111,6 @@ glob@7.1.1, glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1:
|
|
|
1822
2111
|
once "^1.3.0"
|
|
1823
2112
|
path-is-absolute "^1.0.0"
|
|
1824
2113
|
|
|
1825
|
-
glob@^5.0.5:
|
|
1826
|
-
version "5.0.15"
|
|
1827
|
-
resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
|
|
1828
|
-
dependencies:
|
|
1829
|
-
inflight "^1.0.4"
|
|
1830
|
-
inherits "2"
|
|
1831
|
-
minimatch "2 || 3"
|
|
1832
|
-
once "^1.3.0"
|
|
1833
|
-
path-is-absolute "^1.0.0"
|
|
1834
|
-
|
|
1835
2114
|
glob@^6.0.1:
|
|
1836
2115
|
version "6.0.4"
|
|
1837
2116
|
resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"
|
|
@@ -1905,6 +2184,12 @@ has@^1.0.1, has@~1.0.1:
|
|
|
1905
2184
|
dependencies:
|
|
1906
2185
|
function-bind "^1.0.2"
|
|
1907
2186
|
|
|
2187
|
+
hash.js@^1.0.0, hash.js@^1.0.3:
|
|
2188
|
+
version "1.0.3"
|
|
2189
|
+
resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.0.3.tgz#1332ff00156c0a0ffdd8236013d07b77a0451573"
|
|
2190
|
+
dependencies:
|
|
2191
|
+
inherits "^2.0.1"
|
|
2192
|
+
|
|
1908
2193
|
hawk@~3.1.3:
|
|
1909
2194
|
version "3.1.3"
|
|
1910
2195
|
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
|
|
@@ -1914,6 +2199,14 @@ hawk@~3.1.3:
|
|
|
1914
2199
|
hoek "2.x.x"
|
|
1915
2200
|
sntp "1.x.x"
|
|
1916
2201
|
|
|
2202
|
+
hmac-drbg@^1.0.0:
|
|
2203
|
+
version "1.0.0"
|
|
2204
|
+
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.0.tgz#3db471f45aae4a994a0688322171f51b8b91bee5"
|
|
2205
|
+
dependencies:
|
|
2206
|
+
hash.js "^1.0.3"
|
|
2207
|
+
minimalistic-assert "^1.0.0"
|
|
2208
|
+
minimalistic-crypto-utils "^1.0.1"
|
|
2209
|
+
|
|
1917
2210
|
hoek@2.x.x:
|
|
1918
2211
|
version "2.16.3"
|
|
1919
2212
|
resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed"
|
|
@@ -1925,6 +2218,10 @@ home-or-tmp@^2.0.0:
|
|
|
1925
2218
|
os-homedir "^1.0.0"
|
|
1926
2219
|
os-tmpdir "^1.0.1"
|
|
1927
2220
|
|
|
2221
|
+
hosted-git-info@^2.1.4:
|
|
2222
|
+
version "2.2.0"
|
|
2223
|
+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.2.0.tgz#7a0d097863d886c0fabbdcd37bf1758d8becf8a5"
|
|
2224
|
+
|
|
1928
2225
|
html-encoding-sniffer@^1.0.1:
|
|
1929
2226
|
version "1.0.1"
|
|
1930
2227
|
resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz#79bf7a785ea495fe66165e734153f363ff5437da"
|
|
@@ -1951,7 +2248,7 @@ https-proxy-agent@^1.0.0:
|
|
|
1951
2248
|
debug "2"
|
|
1952
2249
|
extend "3"
|
|
1953
2250
|
|
|
1954
|
-
iconv-lite@0.4.13, iconv-lite
|
|
2251
|
+
iconv-lite@0.4.13, iconv-lite@~0.4.13:
|
|
1955
2252
|
version "0.4.13"
|
|
1956
2253
|
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2"
|
|
1957
2254
|
|
|
@@ -2031,10 +2328,6 @@ inquirer@^0.12.0:
|
|
|
2031
2328
|
strip-ansi "^3.0.0"
|
|
2032
2329
|
through "^2.3.6"
|
|
2033
2330
|
|
|
2034
|
-
interpret@^0.6.4:
|
|
2035
|
-
version "0.6.6"
|
|
2036
|
-
resolved "https://registry.yarnpkg.com/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b"
|
|
2037
|
-
|
|
2038
2331
|
interpret@^1.0.0:
|
|
2039
2332
|
version "1.0.1"
|
|
2040
2333
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c"
|
|
@@ -2045,6 +2338,14 @@ invariant@^2.2.0:
|
|
|
2045
2338
|
dependencies:
|
|
2046
2339
|
loose-envify "^1.0.0"
|
|
2047
2340
|
|
|
2341
|
+
invert-kv@^1.0.0:
|
|
2342
|
+
version "1.0.0"
|
|
2343
|
+
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
|
|
2344
|
+
|
|
2345
|
+
is-arrayish@^0.2.1:
|
|
2346
|
+
version "0.2.1"
|
|
2347
|
+
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
|
|
2348
|
+
|
|
2048
2349
|
is-binary-path@^1.0.0:
|
|
2049
2350
|
version "1.0.1"
|
|
2050
2351
|
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
|
|
@@ -2055,6 +2356,12 @@ is-buffer@^1.0.2:
|
|
|
2055
2356
|
version "1.1.4"
|
|
2056
2357
|
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.4.tgz#cfc86ccd5dc5a52fa80489111c6920c457e2d98b"
|
|
2057
2358
|
|
|
2359
|
+
is-builtin-module@^1.0.0:
|
|
2360
|
+
version "1.0.0"
|
|
2361
|
+
resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe"
|
|
2362
|
+
dependencies:
|
|
2363
|
+
builtin-modules "^1.0.0"
|
|
2364
|
+
|
|
2058
2365
|
is-callable@^1.1.1, is-callable@^1.1.3:
|
|
2059
2366
|
version "1.1.3"
|
|
2060
2367
|
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.3.tgz#86eb75392805ddc33af71c92a0eedf74ee7604b2"
|
|
@@ -2176,6 +2483,10 @@ is-typedarray@~1.0.0:
|
|
|
2176
2483
|
version "1.0.0"
|
|
2177
2484
|
resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
|
|
2178
2485
|
|
|
2486
|
+
is-utf8@^0.2.0:
|
|
2487
|
+
version "0.2.1"
|
|
2488
|
+
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
|
|
2489
|
+
|
|
2179
2490
|
isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
|
|
2180
2491
|
version "1.0.0"
|
|
2181
2492
|
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
|
|
@@ -2207,6 +2518,10 @@ js-tokens@^2.0.0:
|
|
|
2207
2518
|
version "2.0.0"
|
|
2208
2519
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-2.0.0.tgz#79903f5563ee778cc1162e6dcf1a0027c97f9cb5"
|
|
2209
2520
|
|
|
2521
|
+
js-tokens@^3.0.0:
|
|
2522
|
+
version "3.0.1"
|
|
2523
|
+
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.1.tgz#08e9f132484a2c45a30907e9dc4d5567b7f114d7"
|
|
2524
|
+
|
|
2210
2525
|
js-yaml@^3.5.1:
|
|
2211
2526
|
version "3.6.1"
|
|
2212
2527
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.6.1.tgz#6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30"
|
|
@@ -2218,30 +2533,29 @@ jsbn@~0.1.0:
|
|
|
2218
2533
|
version "0.1.0"
|
|
2219
2534
|
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.0.tgz#650987da0dd74f4ebf5a11377a2aa2d273e97dfd"
|
|
2220
2535
|
|
|
2221
|
-
jsdom@^9.
|
|
2222
|
-
version "9.
|
|
2223
|
-
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.
|
|
2536
|
+
jsdom@^9.11.0:
|
|
2537
|
+
version "9.11.0"
|
|
2538
|
+
resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-9.11.0.tgz#a95b0304e521a2ca5a63c6ea47bf7708a7a84591"
|
|
2224
2539
|
dependencies:
|
|
2225
|
-
abab "^1.0.
|
|
2226
|
-
acorn "^
|
|
2227
|
-
acorn-globals "^1.0
|
|
2540
|
+
abab "^1.0.3"
|
|
2541
|
+
acorn "^4.0.4"
|
|
2542
|
+
acorn-globals "^3.1.0"
|
|
2228
2543
|
array-equal "^1.0.0"
|
|
2229
2544
|
content-type-parser "^1.0.1"
|
|
2230
|
-
cssom ">= 0.3.
|
|
2231
|
-
cssstyle ">= 0.2.
|
|
2545
|
+
cssom ">= 0.3.2 < 0.4.0"
|
|
2546
|
+
cssstyle ">= 0.2.37 < 0.3.0"
|
|
2232
2547
|
escodegen "^1.6.1"
|
|
2233
2548
|
html-encoding-sniffer "^1.0.1"
|
|
2234
|
-
iconv-lite "^0.4.13"
|
|
2235
2549
|
nwmatcher ">= 1.3.9 < 2.0.0"
|
|
2236
2550
|
parse5 "^1.5.1"
|
|
2237
|
-
request "^2.
|
|
2238
|
-
sax "^1.1
|
|
2239
|
-
symbol-tree "
|
|
2240
|
-
tough-cookie "^2.3.
|
|
2241
|
-
webidl-conversions "^
|
|
2551
|
+
request "^2.79.0"
|
|
2552
|
+
sax "^1.2.1"
|
|
2553
|
+
symbol-tree "^3.2.1"
|
|
2554
|
+
tough-cookie "^2.3.2"
|
|
2555
|
+
webidl-conversions "^4.0.0"
|
|
2242
2556
|
whatwg-encoding "^1.0.1"
|
|
2243
|
-
whatwg-url "^4.
|
|
2244
|
-
xml-name-validator "
|
|
2557
|
+
whatwg-url "^4.3.0"
|
|
2558
|
+
xml-name-validator "^2.0.1"
|
|
2245
2559
|
|
|
2246
2560
|
jsesc@^1.3.0:
|
|
2247
2561
|
version "1.3.0"
|
|
@@ -2251,6 +2565,10 @@ jsesc@~0.5.0:
|
|
|
2251
2565
|
version "0.5.0"
|
|
2252
2566
|
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
|
|
2253
2567
|
|
|
2568
|
+
json-loader@^0.5.4:
|
|
2569
|
+
version "0.5.4"
|
|
2570
|
+
resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de"
|
|
2571
|
+
|
|
2254
2572
|
json-schema@0.2.3:
|
|
2255
2573
|
version "0.2.3"
|
|
2256
2574
|
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
|
|
@@ -2302,6 +2620,12 @@ lazy-cache@^1.0.3:
|
|
|
2302
2620
|
version "1.0.4"
|
|
2303
2621
|
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
|
|
2304
2622
|
|
|
2623
|
+
lcid@^1.0.0:
|
|
2624
|
+
version "1.0.0"
|
|
2625
|
+
resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835"
|
|
2626
|
+
dependencies:
|
|
2627
|
+
invert-kv "^1.0.0"
|
|
2628
|
+
|
|
2305
2629
|
levn@^0.3.0, levn@~0.3.0:
|
|
2306
2630
|
version "0.3.0"
|
|
2307
2631
|
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
|
@@ -2309,9 +2633,23 @@ levn@^0.3.0, levn@~0.3.0:
|
|
|
2309
2633
|
prelude-ls "~1.1.2"
|
|
2310
2634
|
type-check "~0.3.2"
|
|
2311
2635
|
|
|
2312
|
-
|
|
2313
|
-
version "
|
|
2314
|
-
resolved "https://registry.yarnpkg.com/
|
|
2636
|
+
load-json-file@^1.0.0:
|
|
2637
|
+
version "1.1.0"
|
|
2638
|
+
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
|
|
2639
|
+
dependencies:
|
|
2640
|
+
graceful-fs "^4.1.2"
|
|
2641
|
+
parse-json "^2.2.0"
|
|
2642
|
+
pify "^2.0.0"
|
|
2643
|
+
pinkie-promise "^2.0.0"
|
|
2644
|
+
strip-bom "^2.0.0"
|
|
2645
|
+
|
|
2646
|
+
loader-runner@^2.3.0:
|
|
2647
|
+
version "2.3.0"
|
|
2648
|
+
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2"
|
|
2649
|
+
|
|
2650
|
+
loader-utils@^0.2.16:
|
|
2651
|
+
version "0.2.17"
|
|
2652
|
+
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
|
|
2315
2653
|
dependencies:
|
|
2316
2654
|
big.js "^3.1.3"
|
|
2317
2655
|
emojis-list "^2.0.0"
|
|
@@ -2330,7 +2668,7 @@ lodash.pickby@^4.6.0:
|
|
|
2330
2668
|
version "4.6.0"
|
|
2331
2669
|
resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff"
|
|
2332
2670
|
|
|
2333
|
-
lodash@4.16.6, lodash@^4.
|
|
2671
|
+
lodash@4.16.6, lodash@^4.14.0:
|
|
2334
2672
|
version "4.16.6"
|
|
2335
2673
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.6.tgz#d22c9ac660288f3843e16ba7d2b5d06cca27d777"
|
|
2336
2674
|
|
|
@@ -2338,7 +2676,7 @@ lodash@^3.6.0:
|
|
|
2338
2676
|
version "3.10.1"
|
|
2339
2677
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
|
|
2340
2678
|
|
|
2341
|
-
lodash@^4.2.0, lodash@^4.2.1, lodash@^4.6.1:
|
|
2679
|
+
lodash@^4.0.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
|
|
2342
2680
|
version "4.16.4"
|
|
2343
2681
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.16.4.tgz#01ce306b9bad1319f2a5528674f88297aeb70127"
|
|
2344
2682
|
|
|
@@ -2352,13 +2690,9 @@ loose-envify@^1.0.0, loose-envify@^1.1.0:
|
|
|
2352
2690
|
dependencies:
|
|
2353
2691
|
js-tokens "^2.0.0"
|
|
2354
2692
|
|
|
2355
|
-
memory-fs@^0.
|
|
2356
|
-
version "0.
|
|
2357
|
-
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.
|
|
2358
|
-
|
|
2359
|
-
memory-fs@~0.3.0:
|
|
2360
|
-
version "0.3.0"
|
|
2361
|
-
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.3.0.tgz#7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20"
|
|
2693
|
+
memory-fs@^0.4.0, memory-fs@~0.4.1:
|
|
2694
|
+
version "0.4.1"
|
|
2695
|
+
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
|
|
2362
2696
|
dependencies:
|
|
2363
2697
|
errno "^0.1.3"
|
|
2364
2698
|
readable-stream "^2.0.1"
|
|
@@ -2381,6 +2715,13 @@ micromatch@^2.1.5:
|
|
|
2381
2715
|
parse-glob "^3.0.4"
|
|
2382
2716
|
regex-cache "^0.4.2"
|
|
2383
2717
|
|
|
2718
|
+
miller-rabin@^4.0.0:
|
|
2719
|
+
version "4.0.0"
|
|
2720
|
+
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"
|
|
2721
|
+
dependencies:
|
|
2722
|
+
bn.js "^4.0.0"
|
|
2723
|
+
brorand "^1.0.1"
|
|
2724
|
+
|
|
2384
2725
|
mime-db@~1.24.0:
|
|
2385
2726
|
version "1.24.0"
|
|
2386
2727
|
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.24.0.tgz#e2d13f939f0016c6e4e9ad25a8652f126c467f0c"
|
|
@@ -2401,13 +2742,21 @@ min-document@^2.19.0:
|
|
|
2401
2742
|
dependencies:
|
|
2402
2743
|
dom-walk "^0.1.0"
|
|
2403
2744
|
|
|
2745
|
+
minimalistic-assert@^1.0.0:
|
|
2746
|
+
version "1.0.0"
|
|
2747
|
+
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3"
|
|
2748
|
+
|
|
2749
|
+
minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
|
|
2750
|
+
version "1.0.1"
|
|
2751
|
+
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
|
2752
|
+
|
|
2404
2753
|
"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3:
|
|
2405
2754
|
version "3.0.3"
|
|
2406
2755
|
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774"
|
|
2407
2756
|
dependencies:
|
|
2408
2757
|
brace-expansion "^1.0.0"
|
|
2409
2758
|
|
|
2410
|
-
minimist@0.0.8
|
|
2759
|
+
minimist@0.0.8:
|
|
2411
2760
|
version "0.0.8"
|
|
2412
2761
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
|
|
2413
2762
|
|
|
@@ -2452,16 +2801,16 @@ node-fetch@^1.0.1:
|
|
|
2452
2801
|
encoding "^0.1.11"
|
|
2453
2802
|
is-stream "^1.0.1"
|
|
2454
2803
|
|
|
2455
|
-
node-libs-browser@^0.
|
|
2456
|
-
version "0.
|
|
2457
|
-
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-0.
|
|
2804
|
+
node-libs-browser@^2.0.0:
|
|
2805
|
+
version "2.0.0"
|
|
2806
|
+
resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646"
|
|
2458
2807
|
dependencies:
|
|
2459
2808
|
assert "^1.1.1"
|
|
2460
2809
|
browserify-zlib "^0.1.4"
|
|
2461
|
-
buffer "^4.
|
|
2810
|
+
buffer "^4.3.0"
|
|
2462
2811
|
console-browserify "^1.1.0"
|
|
2463
2812
|
constants-browserify "^1.0.0"
|
|
2464
|
-
crypto-browserify "3.
|
|
2813
|
+
crypto-browserify "^3.11.0"
|
|
2465
2814
|
domain-browser "^1.1.1"
|
|
2466
2815
|
events "^1.0.0"
|
|
2467
2816
|
https-browserify "0.0.1"
|
|
@@ -2504,6 +2853,15 @@ nopt@~3.0.6:
|
|
|
2504
2853
|
dependencies:
|
|
2505
2854
|
abbrev "1"
|
|
2506
2855
|
|
|
2856
|
+
normalize-package-data@^2.3.2:
|
|
2857
|
+
version "2.3.5"
|
|
2858
|
+
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.3.5.tgz#8d924f142960e1777e7ffe170543631cc7cb02df"
|
|
2859
|
+
dependencies:
|
|
2860
|
+
hosted-git-info "^2.1.4"
|
|
2861
|
+
is-builtin-module "^1.0.0"
|
|
2862
|
+
semver "2 || 3 || 4 || 5"
|
|
2863
|
+
validate-npm-package-license "^3.0.1"
|
|
2864
|
+
|
|
2507
2865
|
normalize-path@^2.0.1:
|
|
2508
2866
|
version "2.0.1"
|
|
2509
2867
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
|
|
@@ -2537,10 +2895,18 @@ object-inspect@~1.2.1:
|
|
|
2537
2895
|
version "1.2.1"
|
|
2538
2896
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.2.1.tgz#3b62226eb8f6d441751c7d8f22a20ff80ac9dc3f"
|
|
2539
2897
|
|
|
2540
|
-
object-keys@^1.0.8:
|
|
2898
|
+
object-keys@^1.0.10, object-keys@^1.0.8:
|
|
2541
2899
|
version "1.0.11"
|
|
2542
2900
|
resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d"
|
|
2543
2901
|
|
|
2902
|
+
object.assign@^4.0.4:
|
|
2903
|
+
version "4.0.4"
|
|
2904
|
+
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.0.4.tgz#b1c9cc044ef1b9fe63606fc141abbb32e14730cc"
|
|
2905
|
+
dependencies:
|
|
2906
|
+
define-properties "^1.1.2"
|
|
2907
|
+
function-bind "^1.1.0"
|
|
2908
|
+
object-keys "^1.0.10"
|
|
2909
|
+
|
|
2544
2910
|
object.omit@^2.0.0:
|
|
2545
2911
|
version "2.0.1"
|
|
2546
2912
|
resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
|
|
@@ -2564,13 +2930,6 @@ onetime@^1.0.0:
|
|
|
2564
2930
|
version "1.1.0"
|
|
2565
2931
|
resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
|
|
2566
2932
|
|
|
2567
|
-
optimist@~0.6.0:
|
|
2568
|
-
version "0.6.1"
|
|
2569
|
-
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
|
|
2570
|
-
dependencies:
|
|
2571
|
-
minimist "~0.0.1"
|
|
2572
|
-
wordwrap "~0.0.2"
|
|
2573
|
-
|
|
2574
2933
|
optionator@^0.8.1, optionator@^0.8.2:
|
|
2575
2934
|
version "0.8.2"
|
|
2576
2935
|
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
|
|
@@ -2590,6 +2949,12 @@ os-homedir@^1.0.0:
|
|
|
2590
2949
|
version "1.0.2"
|
|
2591
2950
|
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
|
|
2592
2951
|
|
|
2952
|
+
os-locale@^1.4.0:
|
|
2953
|
+
version "1.4.0"
|
|
2954
|
+
resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9"
|
|
2955
|
+
dependencies:
|
|
2956
|
+
lcid "^1.0.0"
|
|
2957
|
+
|
|
2593
2958
|
os-shim@^0.1.2:
|
|
2594
2959
|
version "0.1.3"
|
|
2595
2960
|
resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917"
|
|
@@ -2610,6 +2975,16 @@ pako@~0.2.0:
|
|
|
2610
2975
|
version "0.2.9"
|
|
2611
2976
|
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
|
|
2612
2977
|
|
|
2978
|
+
parse-asn1@^5.0.0:
|
|
2979
|
+
version "5.0.0"
|
|
2980
|
+
resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.0.0.tgz#35060f6d5015d37628c770f4e091a0b5a278bc23"
|
|
2981
|
+
dependencies:
|
|
2982
|
+
asn1.js "^4.0.0"
|
|
2983
|
+
browserify-aes "^1.0.0"
|
|
2984
|
+
create-hash "^1.1.0"
|
|
2985
|
+
evp_bytestokey "^1.0.0"
|
|
2986
|
+
pbkdf2 "^3.0.3"
|
|
2987
|
+
|
|
2613
2988
|
parse-glob@^3.0.4:
|
|
2614
2989
|
version "3.0.4"
|
|
2615
2990
|
resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
|
|
@@ -2619,6 +2994,12 @@ parse-glob@^3.0.4:
|
|
|
2619
2994
|
is-extglob "^1.0.0"
|
|
2620
2995
|
is-glob "^2.0.0"
|
|
2621
2996
|
|
|
2997
|
+
parse-json@^2.2.0:
|
|
2998
|
+
version "2.2.0"
|
|
2999
|
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
|
|
3000
|
+
dependencies:
|
|
3001
|
+
error-ex "^1.2.0"
|
|
3002
|
+
|
|
2622
3003
|
parse-ms@^1.0.0:
|
|
2623
3004
|
version "1.0.1"
|
|
2624
3005
|
resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-1.0.1.tgz#56346d4749d78f23430ca0c713850aef91aa361d"
|
|
@@ -2649,9 +3030,19 @@ path-is-inside@^1.0.1:
|
|
|
2649
3030
|
version "1.0.2"
|
|
2650
3031
|
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53"
|
|
2651
3032
|
|
|
2652
|
-
|
|
2653
|
-
version "
|
|
2654
|
-
resolved "https://registry.yarnpkg.com/
|
|
3033
|
+
path-type@^1.0.0:
|
|
3034
|
+
version "1.1.0"
|
|
3035
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
|
|
3036
|
+
dependencies:
|
|
3037
|
+
graceful-fs "^4.1.2"
|
|
3038
|
+
pify "^2.0.0"
|
|
3039
|
+
pinkie-promise "^2.0.0"
|
|
3040
|
+
|
|
3041
|
+
pbkdf2@^3.0.3:
|
|
3042
|
+
version "3.0.9"
|
|
3043
|
+
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.9.tgz#f2c4b25a600058b3c3773c086c37dbbee1ffe693"
|
|
3044
|
+
dependencies:
|
|
3045
|
+
create-hmac "^1.1.2"
|
|
2655
3046
|
|
|
2656
3047
|
pify@^2.0.0:
|
|
2657
3048
|
version "2.3.0"
|
|
@@ -2703,7 +3094,7 @@ pretty-ms@^2.1.0:
|
|
|
2703
3094
|
parse-ms "^1.0.0"
|
|
2704
3095
|
plur "^1.0.0"
|
|
2705
3096
|
|
|
2706
|
-
private@^0.1.6
|
|
3097
|
+
private@^0.1.6:
|
|
2707
3098
|
version "0.1.6"
|
|
2708
3099
|
resolved "https://registry.yarnpkg.com/private/-/private-0.1.6.tgz#55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"
|
|
2709
3100
|
|
|
@@ -2733,6 +3124,16 @@ prr@~0.0.0:
|
|
|
2733
3124
|
version "0.0.0"
|
|
2734
3125
|
resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a"
|
|
2735
3126
|
|
|
3127
|
+
public-encrypt@^4.0.0:
|
|
3128
|
+
version "4.0.0"
|
|
3129
|
+
resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6"
|
|
3130
|
+
dependencies:
|
|
3131
|
+
bn.js "^4.1.0"
|
|
3132
|
+
browserify-rsa "^4.0.0"
|
|
3133
|
+
create-hash "^1.1.0"
|
|
3134
|
+
parse-asn1 "^5.0.0"
|
|
3135
|
+
randombytes "^2.0.1"
|
|
3136
|
+
|
|
2736
3137
|
punycode@1.3.2:
|
|
2737
3138
|
version "1.3.2"
|
|
2738
3139
|
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
|
|
@@ -2760,6 +3161,10 @@ randomatic@^1.1.3:
|
|
|
2760
3161
|
is-number "^2.0.2"
|
|
2761
3162
|
kind-of "^3.0.2"
|
|
2762
3163
|
|
|
3164
|
+
randombytes@^2.0.0, randombytes@^2.0.1:
|
|
3165
|
+
version "2.0.3"
|
|
3166
|
+
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.3.tgz#674c99760901c3c4112771a31e521dc349cc09ec"
|
|
3167
|
+
|
|
2763
3168
|
rc@~1.1.6:
|
|
2764
3169
|
version "1.1.6"
|
|
2765
3170
|
resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.6.tgz#43651b76b6ae53b5c802f1151fa3fc3b059969c9"
|
|
@@ -2777,7 +3182,7 @@ react-deep-force-update@^1.0.0:
|
|
|
2777
3182
|
version "1.0.1"
|
|
2778
3183
|
resolved "https://registry.yarnpkg.com/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz#f911b5be1d2a6fe387507dd6e9a767aa2924b4c7"
|
|
2779
3184
|
|
|
2780
|
-
react-dom@^15.4.
|
|
3185
|
+
react-dom@^15.4.2:
|
|
2781
3186
|
version "15.4.2"
|
|
2782
3187
|
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.4.2.tgz#015363f05b0a1fd52ae9efdd3a0060d90695208f"
|
|
2783
3188
|
dependencies:
|
|
@@ -2799,7 +3204,7 @@ react-transform-hmr@^1.0.4:
|
|
|
2799
3204
|
global "^4.3.0"
|
|
2800
3205
|
react-proxy "^1.1.7"
|
|
2801
3206
|
|
|
2802
|
-
react@^15.4.
|
|
3207
|
+
react@^15.4.2:
|
|
2803
3208
|
version "15.4.2"
|
|
2804
3209
|
resolved "https://registry.yarnpkg.com/react/-/react-15.4.2.tgz#41f7991b26185392ba9bae96c8889e7e018397ef"
|
|
2805
3210
|
dependencies:
|
|
@@ -2807,7 +3212,22 @@ react@^15.4.1:
|
|
|
2807
3212
|
loose-envify "^1.1.0"
|
|
2808
3213
|
object-assign "^4.1.0"
|
|
2809
3214
|
|
|
2810
|
-
|
|
3215
|
+
read-pkg-up@^1.0.1:
|
|
3216
|
+
version "1.0.1"
|
|
3217
|
+
resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
|
|
3218
|
+
dependencies:
|
|
3219
|
+
find-up "^1.0.0"
|
|
3220
|
+
read-pkg "^1.0.0"
|
|
3221
|
+
|
|
3222
|
+
read-pkg@^1.0.0:
|
|
3223
|
+
version "1.1.0"
|
|
3224
|
+
resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
|
|
3225
|
+
dependencies:
|
|
3226
|
+
load-json-file "^1.0.0"
|
|
3227
|
+
normalize-package-data "^2.3.2"
|
|
3228
|
+
path-type "^1.0.0"
|
|
3229
|
+
|
|
3230
|
+
readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@~2.0.0:
|
|
2811
3231
|
version "2.0.6"
|
|
2812
3232
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e"
|
|
2813
3233
|
dependencies:
|
|
@@ -2818,7 +3238,7 @@ readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable
|
|
|
2818
3238
|
string_decoder "~0.10.x"
|
|
2819
3239
|
util-deprecate "~1.0.1"
|
|
2820
3240
|
|
|
2821
|
-
"readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.1.0, readable-stream@~2.1.4:
|
|
3241
|
+
"readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.5, readable-stream@^2.1.0, readable-stream@~2.1.4:
|
|
2822
3242
|
version "2.1.5"
|
|
2823
3243
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.1.5.tgz#66fa8b720e1438b364681f2ad1a63c618448c9d0"
|
|
2824
3244
|
dependencies:
|
|
@@ -2874,6 +3294,14 @@ regenerator-runtime@^0.9.5:
|
|
|
2874
3294
|
version "0.9.5"
|
|
2875
3295
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.9.5.tgz#403d6d40a4bdff9c330dd9392dcbb2d9a8bba1fc"
|
|
2876
3296
|
|
|
3297
|
+
regenerator-transform@0.9.8:
|
|
3298
|
+
version "0.9.8"
|
|
3299
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.8.tgz#0f88bb2bc03932ddb7b6b7312e68078f01026d6c"
|
|
3300
|
+
dependencies:
|
|
3301
|
+
babel-runtime "^6.18.0"
|
|
3302
|
+
babel-types "^6.19.0"
|
|
3303
|
+
private "^0.1.6"
|
|
3304
|
+
|
|
2877
3305
|
regex-cache@^0.4.2:
|
|
2878
3306
|
version "0.4.3"
|
|
2879
3307
|
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
|
|
@@ -2899,9 +3327,9 @@ regjsparser@^0.1.4:
|
|
|
2899
3327
|
dependencies:
|
|
2900
3328
|
jsesc "~0.5.0"
|
|
2901
3329
|
|
|
2902
|
-
release-it@^2.5.
|
|
2903
|
-
version "2.5.
|
|
2904
|
-
resolved "https://registry.yarnpkg.com/release-it/-/release-it-2.5.
|
|
3330
|
+
release-it@^2.5.4:
|
|
3331
|
+
version "2.5.4"
|
|
3332
|
+
resolved "https://registry.yarnpkg.com/release-it/-/release-it-2.5.4.tgz#b85fc43d424aa19ee4cc7265936385f2095a5e50"
|
|
2905
3333
|
dependencies:
|
|
2906
3334
|
chalk "1.1.3"
|
|
2907
3335
|
github "7.2.0"
|
|
@@ -2930,7 +3358,7 @@ repeating@^2.0.0:
|
|
|
2930
3358
|
dependencies:
|
|
2931
3359
|
is-finite "^1.0.0"
|
|
2932
3360
|
|
|
2933
|
-
request@^2.
|
|
3361
|
+
request@^2.75.0:
|
|
2934
3362
|
version "2.76.0"
|
|
2935
3363
|
resolved "https://registry.yarnpkg.com/request/-/request-2.76.0.tgz#be44505afef70360a0436955106be3945d95560e"
|
|
2936
3364
|
dependencies:
|
|
@@ -2955,6 +3383,39 @@ request@^2.55.0, request@^2.75.0:
|
|
|
2955
3383
|
tough-cookie "~2.3.0"
|
|
2956
3384
|
tunnel-agent "~0.4.1"
|
|
2957
3385
|
|
|
3386
|
+
request@^2.79.0:
|
|
3387
|
+
version "2.79.0"
|
|
3388
|
+
resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de"
|
|
3389
|
+
dependencies:
|
|
3390
|
+
aws-sign2 "~0.6.0"
|
|
3391
|
+
aws4 "^1.2.1"
|
|
3392
|
+
caseless "~0.11.0"
|
|
3393
|
+
combined-stream "~1.0.5"
|
|
3394
|
+
extend "~3.0.0"
|
|
3395
|
+
forever-agent "~0.6.1"
|
|
3396
|
+
form-data "~2.1.1"
|
|
3397
|
+
har-validator "~2.0.6"
|
|
3398
|
+
hawk "~3.1.3"
|
|
3399
|
+
http-signature "~1.1.0"
|
|
3400
|
+
is-typedarray "~1.0.0"
|
|
3401
|
+
isstream "~0.1.2"
|
|
3402
|
+
json-stringify-safe "~5.0.1"
|
|
3403
|
+
mime-types "~2.1.7"
|
|
3404
|
+
oauth-sign "~0.8.1"
|
|
3405
|
+
qs "~6.3.0"
|
|
3406
|
+
stringstream "~0.0.4"
|
|
3407
|
+
tough-cookie "~2.3.0"
|
|
3408
|
+
tunnel-agent "~0.4.1"
|
|
3409
|
+
uuid "^3.0.0"
|
|
3410
|
+
|
|
3411
|
+
require-directory@^2.1.1:
|
|
3412
|
+
version "2.1.1"
|
|
3413
|
+
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
|
|
3414
|
+
|
|
3415
|
+
require-main-filename@^1.0.1:
|
|
3416
|
+
version "1.0.1"
|
|
3417
|
+
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
|
3418
|
+
|
|
2958
3419
|
require-uncached@^1.0.2:
|
|
2959
3420
|
version "1.0.2"
|
|
2960
3421
|
resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.2.tgz#67dad3b733089e77030124678a459589faf6a7ec"
|
|
@@ -2995,9 +3456,9 @@ rimraf@2, rimraf@^2.2.8, rimraf@~2.5.1, rimraf@~2.5.4:
|
|
|
2995
3456
|
dependencies:
|
|
2996
3457
|
glob "^7.0.5"
|
|
2997
3458
|
|
|
2998
|
-
ripemd160
|
|
2999
|
-
version "0.
|
|
3000
|
-
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-0.
|
|
3459
|
+
ripemd160@^1.0.0:
|
|
3460
|
+
version "1.0.1"
|
|
3461
|
+
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-1.0.1.tgz#93a4bbd4942bc574b69a8fa57c71de10ecca7d6e"
|
|
3001
3462
|
|
|
3002
3463
|
run-async@^0.1.0:
|
|
3003
3464
|
version "0.1.0"
|
|
@@ -3020,11 +3481,11 @@ rx@^4.1.0:
|
|
|
3020
3481
|
version "4.1.0"
|
|
3021
3482
|
resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
|
|
3022
3483
|
|
|
3023
|
-
sax@^1.1
|
|
3024
|
-
version "1.2.
|
|
3025
|
-
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.
|
|
3484
|
+
sax@^1.2.1:
|
|
3485
|
+
version "1.2.2"
|
|
3486
|
+
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.2.tgz#fd8631a23bc7826bef5d871bdb87378c95647828"
|
|
3026
3487
|
|
|
3027
|
-
semver@5.3.0, semver@~5.3.0:
|
|
3488
|
+
"semver@2 || 3 || 4 || 5", semver@5.3.0, semver@~5.3.0:
|
|
3028
3489
|
version "5.3.0"
|
|
3029
3490
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
|
3030
3491
|
|
|
@@ -3032,7 +3493,7 @@ semver@~5.0.1:
|
|
|
3032
3493
|
version "5.0.3"
|
|
3033
3494
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.0.3.tgz#77466de589cd5d3c95f138aa78bc569a3cb5d27a"
|
|
3034
3495
|
|
|
3035
|
-
set-blocking@~2.0.0:
|
|
3496
|
+
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
|
3036
3497
|
version "2.0.0"
|
|
3037
3498
|
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
|
|
3038
3499
|
|
|
@@ -3044,9 +3505,11 @@ setimmediate@^1.0.4:
|
|
|
3044
3505
|
version "1.0.5"
|
|
3045
3506
|
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
|
3046
3507
|
|
|
3047
|
-
sha.js
|
|
3048
|
-
version "2.
|
|
3049
|
-
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.
|
|
3508
|
+
sha.js@^2.3.6:
|
|
3509
|
+
version "2.4.8"
|
|
3510
|
+
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f"
|
|
3511
|
+
dependencies:
|
|
3512
|
+
inherits "^2.0.1"
|
|
3050
3513
|
|
|
3051
3514
|
shelljs@0.7.5, shelljs@^0.7.5:
|
|
3052
3515
|
version "0.7.5"
|
|
@@ -3084,7 +3547,7 @@ source-map-support@^0.4.2:
|
|
|
3084
3547
|
dependencies:
|
|
3085
3548
|
source-map "^0.5.3"
|
|
3086
3549
|
|
|
3087
|
-
source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1:
|
|
3550
|
+
source-map@^0.5.0, source-map@^0.5.3, source-map@~0.5.1, source-map@~0.5.3:
|
|
3088
3551
|
version "0.5.6"
|
|
3089
3552
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
|
|
3090
3553
|
|
|
@@ -3094,12 +3557,6 @@ source-map@~0.2.0:
|
|
|
3094
3557
|
dependencies:
|
|
3095
3558
|
amdefine ">=0.0.4"
|
|
3096
3559
|
|
|
3097
|
-
source-map@~0.4.1:
|
|
3098
|
-
version "0.4.4"
|
|
3099
|
-
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
|
|
3100
|
-
dependencies:
|
|
3101
|
-
amdefine ">=0.0.4"
|
|
3102
|
-
|
|
3103
3560
|
spawn-sync@^1.0.15:
|
|
3104
3561
|
version "1.0.15"
|
|
3105
3562
|
resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476"
|
|
@@ -3107,6 +3564,20 @@ spawn-sync@^1.0.15:
|
|
|
3107
3564
|
concat-stream "^1.4.7"
|
|
3108
3565
|
os-shim "^0.1.2"
|
|
3109
3566
|
|
|
3567
|
+
spdx-correct@~1.0.0:
|
|
3568
|
+
version "1.0.2"
|
|
3569
|
+
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
|
|
3570
|
+
dependencies:
|
|
3571
|
+
spdx-license-ids "^1.0.2"
|
|
3572
|
+
|
|
3573
|
+
spdx-expression-parse@~1.0.0:
|
|
3574
|
+
version "1.0.4"
|
|
3575
|
+
resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
|
|
3576
|
+
|
|
3577
|
+
spdx-license-ids@^1.0.2:
|
|
3578
|
+
version "1.2.2"
|
|
3579
|
+
resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
|
|
3580
|
+
|
|
3110
3581
|
split@^1.0.0:
|
|
3111
3582
|
version "1.0.0"
|
|
3112
3583
|
resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae"
|
|
@@ -3153,7 +3624,7 @@ stream-http@^2.3.1:
|
|
|
3153
3624
|
to-arraybuffer "^1.0.0"
|
|
3154
3625
|
xtend "^4.0.0"
|
|
3155
3626
|
|
|
3156
|
-
string-width@^1.0.1:
|
|
3627
|
+
string-width@^1.0.1, string-width@^1.0.2:
|
|
3157
3628
|
version "1.0.2"
|
|
3158
3629
|
resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
|
|
3159
3630
|
dependencies:
|
|
@@ -3190,6 +3661,12 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1:
|
|
|
3190
3661
|
dependencies:
|
|
3191
3662
|
ansi-regex "^2.0.0"
|
|
3192
3663
|
|
|
3664
|
+
strip-bom@^2.0.0:
|
|
3665
|
+
version "2.0.0"
|
|
3666
|
+
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
|
|
3667
|
+
dependencies:
|
|
3668
|
+
is-utf8 "^0.2.0"
|
|
3669
|
+
|
|
3193
3670
|
strip-bom@^3.0.0:
|
|
3194
3671
|
version "3.0.0"
|
|
3195
3672
|
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
|
@@ -3216,9 +3693,9 @@ symbol-observable@^1.0.2:
|
|
|
3216
3693
|
version "1.0.4"
|
|
3217
3694
|
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
|
|
3218
3695
|
|
|
3219
|
-
|
|
3220
|
-
version "3.
|
|
3221
|
-
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.
|
|
3696
|
+
symbol-tree@^3.2.1:
|
|
3697
|
+
version "3.2.2"
|
|
3698
|
+
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"
|
|
3222
3699
|
|
|
3223
3700
|
table@^3.7.8:
|
|
3224
3701
|
version "3.8.3"
|
|
@@ -3253,9 +3730,9 @@ tap-spec@^4.1.1:
|
|
|
3253
3730
|
tap-out "^1.4.1"
|
|
3254
3731
|
through2 "^2.0.0"
|
|
3255
3732
|
|
|
3256
|
-
tapable@^0.
|
|
3257
|
-
version "0.
|
|
3258
|
-
resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.
|
|
3733
|
+
tapable@^0.2.5, tapable@~0.2.5:
|
|
3734
|
+
version "0.2.6"
|
|
3735
|
+
resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.6.tgz#206be8e188860b514425375e6f1ae89bfb01fd8d"
|
|
3259
3736
|
|
|
3260
3737
|
"tape@>=2.0.0 <5.0.0", tape@^4.6.3:
|
|
3261
3738
|
version "4.6.3"
|
|
@@ -3331,7 +3808,7 @@ to-fast-properties@^1.0.1:
|
|
|
3331
3808
|
version "1.0.2"
|
|
3332
3809
|
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
|
|
3333
3810
|
|
|
3334
|
-
tough-cookie@^2.3.
|
|
3811
|
+
tough-cookie@^2.3.2, tough-cookie@~2.3.0:
|
|
3335
3812
|
version "2.3.2"
|
|
3336
3813
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
|
3337
3814
|
dependencies:
|
|
@@ -3341,6 +3818,10 @@ tr46@~0.0.3:
|
|
|
3341
3818
|
version "0.0.3"
|
|
3342
3819
|
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
|
|
3343
3820
|
|
|
3821
|
+
trim-right@^1.0.1:
|
|
3822
|
+
version "1.0.1"
|
|
3823
|
+
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
|
|
3824
|
+
|
|
3344
3825
|
trim@0.0.1:
|
|
3345
3826
|
version "0.0.1"
|
|
3346
3827
|
resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
|
|
@@ -3375,9 +3856,9 @@ ua-parser-js@^0.7.9:
|
|
|
3375
3856
|
version "0.7.10"
|
|
3376
3857
|
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.10.tgz#917559ddcce07cbc09ece7d80495e4c268f4ef9f"
|
|
3377
3858
|
|
|
3378
|
-
uglify-js
|
|
3379
|
-
version "2.
|
|
3380
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.
|
|
3859
|
+
uglify-js@^2.7.5:
|
|
3860
|
+
version "2.8.3"
|
|
3861
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.3.tgz#1ed5037bc224904c43d36e7310177c02c4c76808"
|
|
3381
3862
|
dependencies:
|
|
3382
3863
|
async "~0.2.6"
|
|
3383
3864
|
source-map "~0.5.1"
|
|
@@ -3419,12 +3900,23 @@ util@0.10.3, util@^0.10.3:
|
|
|
3419
3900
|
dependencies:
|
|
3420
3901
|
inherits "2.0.1"
|
|
3421
3902
|
|
|
3903
|
+
uuid@^3.0.0:
|
|
3904
|
+
version "3.0.1"
|
|
3905
|
+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1"
|
|
3906
|
+
|
|
3422
3907
|
v8flags@^2.0.10:
|
|
3423
3908
|
version "2.0.11"
|
|
3424
3909
|
resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.0.11.tgz#bca8f30f0d6d60612cc2c00641e6962d42ae6881"
|
|
3425
3910
|
dependencies:
|
|
3426
3911
|
user-home "^1.1.1"
|
|
3427
3912
|
|
|
3913
|
+
validate-npm-package-license@^3.0.1:
|
|
3914
|
+
version "3.0.1"
|
|
3915
|
+
resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
|
|
3916
|
+
dependencies:
|
|
3917
|
+
spdx-correct "~1.0.0"
|
|
3918
|
+
spdx-expression-parse "~1.0.0"
|
|
3919
|
+
|
|
3428
3920
|
verror@1.3.6:
|
|
3429
3921
|
version "1.3.6"
|
|
3430
3922
|
resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c"
|
|
@@ -3437,44 +3929,53 @@ vm-browserify@0.0.4:
|
|
|
3437
3929
|
dependencies:
|
|
3438
3930
|
indexof "0.0.1"
|
|
3439
3931
|
|
|
3440
|
-
watchpack@^
|
|
3441
|
-
version "
|
|
3442
|
-
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-
|
|
3932
|
+
watchpack@^1.2.0:
|
|
3933
|
+
version "1.3.1"
|
|
3934
|
+
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87"
|
|
3443
3935
|
dependencies:
|
|
3444
|
-
async "^
|
|
3445
|
-
chokidar "^1.
|
|
3936
|
+
async "^2.1.2"
|
|
3937
|
+
chokidar "^1.4.3"
|
|
3446
3938
|
graceful-fs "^4.1.2"
|
|
3447
3939
|
|
|
3448
|
-
webidl-conversions@^3.0.0
|
|
3940
|
+
webidl-conversions@^3.0.0:
|
|
3449
3941
|
version "3.0.1"
|
|
3450
3942
|
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
|
|
3451
3943
|
|
|
3452
|
-
|
|
3453
|
-
version "0.
|
|
3454
|
-
resolved "https://registry.yarnpkg.com/
|
|
3944
|
+
webidl-conversions@^4.0.0:
|
|
3945
|
+
version "4.0.1"
|
|
3946
|
+
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.1.tgz#8015a17ab83e7e1b311638486ace81da6ce206a0"
|
|
3947
|
+
|
|
3948
|
+
webpack-sources@^0.1.4:
|
|
3949
|
+
version "0.1.4"
|
|
3950
|
+
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-0.1.4.tgz#ccc2c817e08e5fa393239412690bb481821393cd"
|
|
3455
3951
|
dependencies:
|
|
3456
3952
|
source-list-map "~0.1.7"
|
|
3457
|
-
source-map "~0.
|
|
3953
|
+
source-map "~0.5.3"
|
|
3458
3954
|
|
|
3459
|
-
webpack@^
|
|
3460
|
-
version "
|
|
3461
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-
|
|
3462
|
-
dependencies:
|
|
3463
|
-
acorn "^
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3955
|
+
webpack@^2.2.1:
|
|
3956
|
+
version "2.2.1"
|
|
3957
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.2.1.tgz#7bb1d72ae2087dd1a4af526afec15eed17dda475"
|
|
3958
|
+
dependencies:
|
|
3959
|
+
acorn "^4.0.4"
|
|
3960
|
+
acorn-dynamic-import "^2.0.0"
|
|
3961
|
+
ajv "^4.7.0"
|
|
3962
|
+
ajv-keywords "^1.1.1"
|
|
3963
|
+
async "^2.1.2"
|
|
3964
|
+
enhanced-resolve "^3.0.0"
|
|
3965
|
+
interpret "^1.0.0"
|
|
3966
|
+
json-loader "^0.5.4"
|
|
3967
|
+
loader-runner "^2.3.0"
|
|
3968
|
+
loader-utils "^0.2.16"
|
|
3969
|
+
memory-fs "~0.4.1"
|
|
3470
3970
|
mkdirp "~0.5.0"
|
|
3471
|
-
node-libs-browser "^0.
|
|
3472
|
-
|
|
3971
|
+
node-libs-browser "^2.0.0"
|
|
3972
|
+
source-map "^0.5.3"
|
|
3473
3973
|
supports-color "^3.1.0"
|
|
3474
|
-
tapable "~0.
|
|
3475
|
-
uglify-js "
|
|
3476
|
-
watchpack "^
|
|
3477
|
-
webpack-
|
|
3974
|
+
tapable "~0.2.5"
|
|
3975
|
+
uglify-js "^2.7.5"
|
|
3976
|
+
watchpack "^1.2.0"
|
|
3977
|
+
webpack-sources "^0.1.4"
|
|
3978
|
+
yargs "^6.0.0"
|
|
3478
3979
|
|
|
3479
3980
|
whatwg-encoding@^1.0.1:
|
|
3480
3981
|
version "1.0.1"
|
|
@@ -3486,9 +3987,9 @@ whatwg-fetch@>=0.10.0:
|
|
|
3486
3987
|
version "1.0.0"
|
|
3487
3988
|
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-1.0.0.tgz#01c2ac4df40e236aaa18480e3be74bd5c8eb798e"
|
|
3488
3989
|
|
|
3489
|
-
whatwg-url@^4.
|
|
3490
|
-
version "4.
|
|
3491
|
-
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.
|
|
3990
|
+
whatwg-url@^4.3.0:
|
|
3991
|
+
version "4.5.0"
|
|
3992
|
+
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-4.5.0.tgz#79bb6f0e370a4dda1cbc8f3062a490cf8bbb09ea"
|
|
3492
3993
|
dependencies:
|
|
3493
3994
|
tr46 "~0.0.3"
|
|
3494
3995
|
webidl-conversions "^3.0.0"
|
|
@@ -3497,6 +3998,10 @@ when@3.7.7:
|
|
|
3497
3998
|
version "3.7.7"
|
|
3498
3999
|
resolved "https://registry.yarnpkg.com/when/-/when-3.7.7.tgz#aba03fc3bb736d6c88b091d013d8a8e590d84718"
|
|
3499
4000
|
|
|
4001
|
+
which-module@^1.0.0:
|
|
4002
|
+
version "1.0.0"
|
|
4003
|
+
resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
|
|
4004
|
+
|
|
3500
4005
|
wide-align@^1.1.0:
|
|
3501
4006
|
version "1.1.0"
|
|
3502
4007
|
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.0.tgz#40edde802a71fea1f070da3e62dcda2e7add96ad"
|
|
@@ -3511,14 +4016,17 @@ wordwrap@0.0.2:
|
|
|
3511
4016
|
version "0.0.2"
|
|
3512
4017
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
|
|
3513
4018
|
|
|
3514
|
-
wordwrap@~0.0.2:
|
|
3515
|
-
version "0.0.3"
|
|
3516
|
-
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
|
|
3517
|
-
|
|
3518
4019
|
wordwrap@~1.0.0:
|
|
3519
4020
|
version "1.0.0"
|
|
3520
4021
|
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
|
|
3521
4022
|
|
|
4023
|
+
wrap-ansi@^2.0.0:
|
|
4024
|
+
version "2.1.0"
|
|
4025
|
+
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
|
|
4026
|
+
dependencies:
|
|
4027
|
+
string-width "^1.0.1"
|
|
4028
|
+
strip-ansi "^3.0.1"
|
|
4029
|
+
|
|
3522
4030
|
wrappy@1:
|
|
3523
4031
|
version "1.0.2"
|
|
3524
4032
|
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
|
|
@@ -3529,7 +4037,7 @@ write@^0.2.1:
|
|
|
3529
4037
|
dependencies:
|
|
3530
4038
|
mkdirp "^0.5.1"
|
|
3531
4039
|
|
|
3532
|
-
|
|
4040
|
+
xml-name-validator@^2.0.1:
|
|
3533
4041
|
version "2.0.1"
|
|
3534
4042
|
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-2.0.1.tgz#4d8b8f1eccd3419aa362061becef515e1e559635"
|
|
3535
4043
|
|
|
@@ -3537,6 +4045,34 @@ xtend@^4.0.0, xtend@~4.0.0:
|
|
|
3537
4045
|
version "4.0.1"
|
|
3538
4046
|
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
|
|
3539
4047
|
|
|
4048
|
+
y18n@^3.2.1:
|
|
4049
|
+
version "3.2.1"
|
|
4050
|
+
resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41"
|
|
4051
|
+
|
|
4052
|
+
yargs-parser@^4.2.0:
|
|
4053
|
+
version "4.2.1"
|
|
4054
|
+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"
|
|
4055
|
+
dependencies:
|
|
4056
|
+
camelcase "^3.0.0"
|
|
4057
|
+
|
|
4058
|
+
yargs@^6.0.0:
|
|
4059
|
+
version "6.6.0"
|
|
4060
|
+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208"
|
|
4061
|
+
dependencies:
|
|
4062
|
+
camelcase "^3.0.0"
|
|
4063
|
+
cliui "^3.2.0"
|
|
4064
|
+
decamelize "^1.1.1"
|
|
4065
|
+
get-caller-file "^1.0.1"
|
|
4066
|
+
os-locale "^1.4.0"
|
|
4067
|
+
read-pkg-up "^1.0.1"
|
|
4068
|
+
require-directory "^2.1.1"
|
|
4069
|
+
require-main-filename "^1.0.1"
|
|
4070
|
+
set-blocking "^2.0.0"
|
|
4071
|
+
string-width "^1.0.2"
|
|
4072
|
+
which-module "^1.0.0"
|
|
4073
|
+
y18n "^3.2.1"
|
|
4074
|
+
yargs-parser "^4.2.0"
|
|
4075
|
+
|
|
3540
4076
|
yargs@~3.10.0:
|
|
3541
4077
|
version "3.10.0"
|
|
3542
4078
|
resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"
|