summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-09-07 10:57:40 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:04:28 +0200
commit9d9610d708ac75f04c0876460d803c0cc18a0ef4 (patch)
treedecec9f6537f8ba33b7d6e09abcb3268e26776f6 /pkgs
parent17eabf477b035ff4590640ebdfd69ca558437c51 (diff)
downloadNUR-9d9610d708ac75f04c0876460d803c0cc18a0ef4.tar.gz
NUR-9d9610d708ac75f04c0876460d803c0cc18a0ef4.tar.zst
NUR-9d9610d708ac75f04c0876460d803c0cc18a0ef4.zip
Upgrade mastodon
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/webapps/mastodon/default.nix16
-rw-r--r--pkgs/webapps/mastodon/gemset.nix457
-rw-r--r--pkgs/webapps/mastodon/mastodon.json8
-rw-r--r--pkgs/webapps/mastodon/yarn-packages.nix3980
4 files changed, 2443 insertions, 2018 deletions
diff --git a/pkgs/webapps/mastodon/default.nix b/pkgs/webapps/mastodon/default.nix
index 12e4c2c8..3769b67f 100644
--- a/pkgs/webapps/mastodon/default.nix
+++ b/pkgs/webapps/mastodon/default.nix
@@ -3,11 +3,20 @@
3 ruby_2_6, bundlerEnv, defaultGemConfig, 3 ruby_2_6, bundlerEnv, defaultGemConfig,
4 jq, protobuf, protobufc, pkgconfig, libidn, pam, nodejs, yarn }: 4 jq, protobuf, protobufc, pkgconfig, libidn, pam, nodejs, yarn }:
5let 5let
6 info = mylibs.fetchedGithub ./mastodon.json // {
7 src= runCommand "mastodon-patched" {
8 source = (mylibs.fetchedGithub ./mastodon.json).src;
9 } ''
10 cp -a $source $out
11 chmod -R u+w $out
12 sed -i -e "/fuubar/s/2.4.0/2.4.1/" $out/Gemfile.lock
13 '';
14 };
6 gems = bundlerEnv { 15 gems = bundlerEnv {
7 name = "mastodon-env"; 16 name = "mastodon-env";
8 ruby = ruby_2_6; 17 ruby = ruby_2_6;
9 gemset = ./gemset.nix; 18 gemset = ./gemset.nix;
10 gemdir = (mylibs.fetchedGithub ./mastodon.json).src; 19 gemdir = info.src;
11 groups = [ "default" "production" "test" "development" ]; 20 groups = [ "default" "production" "test" "development" ];
12 gemConfig = defaultGemConfig // { 21 gemConfig = defaultGemConfig // {
13 redis-rack = attrs: { 22 redis-rack = attrs: {
@@ -32,7 +41,6 @@ let
32 }; 41 };
33 }; 42 };
34 yarnModules = let 43 yarnModules = let
35 info = mylibs.fetchedGithub ./mastodon.json;
36 packagejson = runCommand "package.json" { buildInputs = [ jq ]; } '' 44 packagejson = runCommand "package.json" { buildInputs = [ jq ]; } ''
37 cat ${info.src}/package.json | jq -r '.version = "${info.version}"' > $out 45 cat ${info.src}/package.json | jq -r '.version = "${info.version}"' > $out
38 ''; 46 '';
@@ -55,7 +63,7 @@ let
55 }; 63 };
56 }; 64 };
57 }; 65 };
58 mastodon_with_yarn = stdenv.mkDerivation (mylibs.fetchedGithub ./mastodon.json // rec { 66 mastodon_with_yarn = stdenv.mkDerivation (info // rec {
59 installPhase = '' 67 installPhase = ''
60 cp -a . $out 68 cp -a . $out
61 cp -a ${yarnModules}/node_modules $out 69 cp -a ${yarnModules}/node_modules $out
@@ -75,7 +83,7 @@ stdenv.mkDerivation {
75 cp -a $mastodon_with_yarn $out 83 cp -a $mastodon_with_yarn $out
76 cd $out 84 cd $out
77 chmod u+rwX . public 85 chmod u+rwX . public
78 chmod -R u+rwX config/ 86 chmod -R u+rwX config/ node_modules/
79 sed -i -e 's@^end$@ config.action_mailer.sendmail_settings = { location: ENV.fetch("SENDMAIL_LOCATION", "/usr/sbin/sendmail") }\nend@' config/environments/production.rb 87 sed -i -e 's@^end$@ config.action_mailer.sendmail_settings = { location: ENV.fetch("SENDMAIL_LOCATION", "/usr/sbin/sendmail") }\nend@' config/environments/production.rb
80 RAILS_ENV=production ${gems}/bin/rails assets:precompile 88 RAILS_ENV=production ${gems}/bin/rails assets:precompile
81 rm -rf tmp/cache 89 rm -rf tmp/cache
diff --git a/pkgs/webapps/mastodon/gemset.nix b/pkgs/webapps/mastodon/gemset.nix
index 9bd2cd31..ff3c7c76 100644
--- a/pkgs/webapps/mastodon/gemset.nix
+++ b/pkgs/webapps/mastodon/gemset.nix
@@ -5,10 +5,10 @@
5 platforms = []; 5 platforms = [];
6 source = { 6 source = {
7 remotes = ["https://rubygems.org"]; 7 remotes = ["https://rubygems.org"];
8 sha256 = "0826k5ch0l03f9yrkxy69aiv039z4qi00lnahw2rzywd2iz6r68x"; 8 sha256 = "04wd9rf8sglrqc8jz49apqcxbi51gdj7l1apf5qr4i86iddk6pkm";
9 type = "gem"; 9 type = "gem";
10 }; 10 };
11 version = "5.2.2"; 11 version = "5.2.3";
12 }; 12 };
13 actionmailer = { 13 actionmailer = {
14 dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; 14 dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"];
@@ -16,10 +16,10 @@
16 platforms = []; 16 platforms = [];
17 source = { 17 source = {
18 remotes = ["https://rubygems.org"]; 18 remotes = ["https://rubygems.org"];
19 sha256 = "0sfpb8s95cmkpp9ybyp2c88r55r5llscmmnkfwcwgasz9ncjiq5n"; 19 sha256 = "15laym06zcm2021qdhlyr6y9jn1marw436i89hcxqg14a8zvyvwa";
20 type = "gem"; 20 type = "gem";
21 }; 21 };
22 version = "5.2.2"; 22 version = "5.2.3";
23 }; 23 };
24 actionpack = { 24 actionpack = {
25 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; 25 dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"];
@@ -27,10 +27,10 @@
27 platforms = []; 27 platforms = [];
28 source = { 28 source = {
29 remotes = ["https://rubygems.org"]; 29 remotes = ["https://rubygems.org"];
30 sha256 = "0iwhbqqn0cm39dq040iwq8cfyclqk3kyzwlp5k3j5cz8k2668wws"; 30 sha256 = "1s2iay17i2k0xx36cmnpbrmr5w6x70jk7fq1d8w70xcdw5chm0w1";
31 type = "gem"; 31 type = "gem";
32 }; 32 };
33 version = "5.2.2"; 33 version = "5.2.3";
34 }; 34 };
35 actionview = { 35 actionview = {
36 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; 36 dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"];
@@ -38,10 +38,10 @@
38 platforms = []; 38 platforms = [];
39 source = { 39 source = {
40 remotes = ["https://rubygems.org"]; 40 remotes = ["https://rubygems.org"];
41 sha256 = "1lz04drbi1z0xhvb8jnr14pbf505lilr02arahxq7y3mxiz0rs8z"; 41 sha256 = "1v49rgf8305grqf6gq7qa47qhamr369igyy0giycz60x86afyr4h";
42 type = "gem"; 42 type = "gem";
43 }; 43 };
44 version = "5.2.2"; 44 version = "5.2.3";
45 }; 45 };
46 active_model_serializers = { 46 active_model_serializers = {
47 dependencies = ["actionpack" "activemodel" "case_transform" "jsonapi-renderer"]; 47 dependencies = ["actionpack" "activemodel" "case_transform" "jsonapi-renderer"];
@@ -49,20 +49,20 @@
49 platforms = []; 49 platforms = [];
50 source = { 50 source = {
51 remotes = ["https://rubygems.org"]; 51 remotes = ["https://rubygems.org"];
52 sha256 = "02snasjwg3q2ar0m6c53ilc5lamx796hm37apk7jf6cx0x3kwzx9"; 52 sha256 = "00fldcifg5zyx866njpjhwlxjxvb32pakf5q3pwnw3ms905s70kd";
53 type = "gem"; 53 type = "gem";
54 }; 54 };
55 version = "0.10.8"; 55 version = "0.10.9";
56 }; 56 };
57 active_record_query_trace = { 57 active_record_query_trace = {
58 groups = ["development"]; 58 groups = ["development"];
59 platforms = []; 59 platforms = [];
60 source = { 60 source = {
61 remotes = ["https://rubygems.org"]; 61 remotes = ["https://rubygems.org"];
62 sha256 = "1aharmy1fcd0plv9k0i2dk5icvnlww8n43ia8xahfkcask0cpidh"; 62 sha256 = "16fwv2h3h3hh8v6wgrpv13yxgg8mswsld0d8z6q1y5z9vd8vncc3";
63 type = "gem"; 63 type = "gem";
64 }; 64 };
65 version = "1.5.4"; 65 version = "1.6.2";
66 }; 66 };
67 activejob = { 67 activejob = {
68 dependencies = ["activesupport" "globalid"]; 68 dependencies = ["activesupport" "globalid"];
@@ -70,10 +70,10 @@
70 platforms = []; 70 platforms = [];
71 source = { 71 source = {
72 remotes = ["https://rubygems.org"]; 72 remotes = ["https://rubygems.org"];
73 sha256 = "1jjkl62x2aprg55x9rpm0h2c82vr2qr989hg3l9r21l01q4822ir"; 73 sha256 = "17vizibxbsli5yppgrvmw13wj7a9xy19s5nqxf1k23bbk2s5b87s";
74 type = "gem"; 74 type = "gem";
75 }; 75 };
76 version = "5.2.2"; 76 version = "5.2.3";
77 }; 77 };
78 activemodel = { 78 activemodel = {
79 dependencies = ["activesupport"]; 79 dependencies = ["activesupport"];
@@ -81,10 +81,10 @@
81 platforms = []; 81 platforms = [];
82 source = { 82 source = {
83 remotes = ["https://rubygems.org"]; 83 remotes = ["https://rubygems.org"];
84 sha256 = "1xmwi3mw8g4shbjvkhk72ra3r5jccbdsd4piphqka2y1h8s7sxvi"; 84 sha256 = "0mghh9di8011ara9h1r5a216yzk1vjm9r3p0gdvdi8j1zmkl6k6h";
85 type = "gem"; 85 type = "gem";
86 }; 86 };
87 version = "5.2.2"; 87 version = "5.2.3";
88 }; 88 };
89 activerecord = { 89 activerecord = {
90 dependencies = ["activemodel" "activesupport" "arel"]; 90 dependencies = ["activemodel" "activesupport" "arel"];
@@ -92,10 +92,10 @@
92 platforms = []; 92 platforms = [];
93 source = { 93 source = {
94 remotes = ["https://rubygems.org"]; 94 remotes = ["https://rubygems.org"];
95 sha256 = "19a0sns6a5wz2wym25lb1dv4lbrrl5sd1n15s5ky2636znmhz30y"; 95 sha256 = "0d6036f592803iyvp6bw98p3sg638mia5dbw19lvachx6jgzfvpw";
96 type = "gem"; 96 type = "gem";
97 }; 97 };
98 version = "5.2.2"; 98 version = "5.2.3";
99 }; 99 };
100 activestorage = { 100 activestorage = {
101 dependencies = ["actionpack" "activerecord" "marcel"]; 101 dependencies = ["actionpack" "activerecord" "marcel"];
@@ -103,10 +103,10 @@
103 platforms = []; 103 platforms = [];
104 source = { 104 source = {
105 remotes = ["https://rubygems.org"]; 105 remotes = ["https://rubygems.org"];
106 sha256 = "0c72837098sw384vk6dmrb2p7q3wx4swnibk6sw9dp4hn1vc4p31"; 106 sha256 = "04is6ipjqw1f337i8pm8w5bd99rpygqfd0fzzxkr7jd308ggmsjk";
107 type = "gem"; 107 type = "gem";
108 }; 108 };
109 version = "5.2.2"; 109 version = "5.2.3";
110 }; 110 };
111 activesupport = { 111 activesupport = {
112 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; 112 dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"];
@@ -114,10 +114,10 @@
114 platforms = []; 114 platforms = [];
115 source = { 115 source = {
116 remotes = ["https://rubygems.org"]; 116 remotes = ["https://rubygems.org"];
117 sha256 = "1iya7vxqwxysr74s7b4z1x19gmnx5advimzip3cbmsd5bd43wfgz"; 117 sha256 = "110vp4frgkw3mpzlmshg2f2ig09cknls2w68ym1r1s39d01v0mi8";
118 type = "gem"; 118 type = "gem";
119 }; 119 };
120 version = "5.2.2"; 120 version = "5.2.3";
121 }; 121 };
122 addressable = { 122 addressable = {
123 dependencies = ["public_suffix"]; 123 dependencies = ["public_suffix"];
@@ -147,10 +147,10 @@
147 platforms = []; 147 platforms = [];
148 source = { 148 source = {
149 remotes = ["https://rubygems.org"]; 149 remotes = ["https://rubygems.org"];
150 sha256 = "1l69l2kn06nkrnyq6gb1x322x5raxs8ms60shpf0v5dsi8lfig16"; 150 sha256 = "1k3ls7z32gz6yx6y372r5a7sm4nkbyrc4nkqyqzgayfkgpjzh0wk";
151 type = "gem"; 151 type = "gem";
152 }; 152 };
153 version = "2.7.4"; 153 version = "2.7.5";
154 }; 154 };
155 arel = { 155 arel = {
156 groups = ["default" "development"]; 156 groups = ["default" "development"];
@@ -199,20 +199,20 @@
199 platforms = []; 199 platforms = [];
200 source = { 200 source = {
201 remotes = ["https://rubygems.org"]; 201 remotes = ["https://rubygems.org"];
202 sha256 = "0gdiwkg24jpx5f3bkw6vchgliicn6v9bpm09j0dldaxsca66q0wy"; 202 sha256 = "100g77a5ixg4p5zwq77f28n2pdkk0y481f7v83qrlmnj22318qq6";
203 type = "gem"; 203 type = "gem";
204 }; 204 };
205 version = "1.0.1"; 205 version = "1.0.3";
206 }; 206 };
207 aws-partitions = { 207 aws-partitions = {
208 groups = ["default"]; 208 groups = ["default"];
209 platforms = []; 209 platforms = [];
210 source = { 210 source = {
211 remotes = ["https://rubygems.org"]; 211 remotes = ["https://rubygems.org"];
212 sha256 = "0v6ksvawcmi5m0sc3qpcvziidzhkxlcaqs851yvvq2s2r5hgdfgb"; 212 sha256 = "0f72sad43nm7qqcb6bmracqv4qjdijg1jd6yabad6jaszw2hncx2";
213 type = "gem"; 213 type = "gem";
214 }; 214 };
215 version = "1.131.0"; 215 version = "1.175.0";
216 }; 216 };
217 aws-sdk-core = { 217 aws-sdk-core = {
218 dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"]; 218 dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"];
@@ -220,10 +220,10 @@
220 platforms = []; 220 platforms = [];
221 source = { 221 source = {
222 remotes = ["https://rubygems.org"]; 222 remotes = ["https://rubygems.org"];
223 sha256 = "0xaaqsy4lpgydg8drjnax62azjmnfpvfz9jk3ca333mdri6c6bvm"; 223 sha256 = "1rgvjvg58qh8b5nppp27qfayh0709bhhbqdpqvcr4ccs8qanln07";
224 type = "gem"; 224 type = "gem";
225 }; 225 };
226 version = "3.45.0"; 226 version = "3.55.0";
227 }; 227 };
228 aws-sdk-kms = { 228 aws-sdk-kms = {
229 dependencies = ["aws-sdk-core" "aws-sigv4"]; 229 dependencies = ["aws-sdk-core" "aws-sigv4"];
@@ -231,10 +231,10 @@
231 platforms = []; 231 platforms = [];
232 source = { 232 source = {
233 remotes = ["https://rubygems.org"]; 233 remotes = ["https://rubygems.org"];
234 sha256 = "195f12iygwlxj720gyikggdlxgfh4j371qa8dn7x4kwgq732b1fn"; 234 sha256 = "1lkdhk75fj67n7wh61p13fga6n15s2lfvh1sfgdhaj99kmv44lyv";
235 type = "gem"; 235 type = "gem";
236 }; 236 };
237 version = "1.13.0"; 237 version = "1.21.0";
238 }; 238 };
239 aws-sdk-s3 = { 239 aws-sdk-s3 = {
240 dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"]; 240 dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"];
@@ -242,20 +242,21 @@
242 platforms = []; 242 platforms = [];
243 source = { 243 source = {
244 remotes = ["https://rubygems.org"]; 244 remotes = ["https://rubygems.org"];
245 sha256 = "1mpf7v5n19ymq585xr0s47d9hcjc6crx5vi99s2ivcl79k1xj87d"; 245 sha256 = "06vmp89n5gljx7rs57yjm6my8f3b14ddb24g95pnwsd86im7plp4";
246 type = "gem"; 246 type = "gem";
247 }; 247 };
248 version = "1.30.1"; 248 version = "1.42.0";
249 }; 249 };
250 aws-sigv4 = { 250 aws-sigv4 = {
251 dependencies = ["aws-eventstream"];
251 groups = ["default"]; 252 groups = ["default"];
252 platforms = []; 253 platforms = [];
253 source = { 254 source = {
254 remotes = ["https://rubygems.org"]; 255 remotes = ["https://rubygems.org"];
255 sha256 = "1hzndv113i6bgy2n72i5l3mwn8vjnb6hhjxfkpn9mm2p5ra77yk7"; 256 sha256 = "1dfc8i5cxjwlvi4b665lbpbwvks8a6wfy3vfmwr3pjdmxwdmc2cs";
256 type = "gem"; 257 type = "gem";
257 }; 258 };
258 version = "1.0.3"; 259 version = "1.1.0";
259 }; 260 };
260 bcrypt = { 261 bcrypt = {
261 groups = ["default" "pam_authentication"]; 262 groups = ["default" "pam_authentication"];
@@ -283,10 +284,10 @@
283 platforms = []; 284 platforms = [];
284 source = { 285 source = {
285 remotes = ["https://rubygems.org"]; 286 remotes = ["https://rubygems.org"];
286 sha256 = "1pqnxxsqqs7vnqvamk5bzs84dv584g9s0qaf2vqb1v2aj5dabcg7"; 287 sha256 = "1mq43k4szfgcdanhdwacyp7yvldl76m9arhdj9n0x25dmbdzp2yn";
287 type = "gem"; 288 type = "gem";
288 }; 289 };
289 version = "2.5.0"; 290 version = "2.5.1";
290 }; 291 };
291 binding_of_caller = { 292 binding_of_caller = {
292 dependencies = ["debug_inspector"]; 293 dependencies = ["debug_inspector"];
@@ -299,26 +300,37 @@
299 }; 300 };
300 version = "0.8.0"; 301 version = "0.8.0";
301 }; 302 };
303 blurhash = {
304 dependencies = ["ffi"];
305 groups = ["default"];
306 platforms = [];
307 source = {
308 remotes = ["https://rubygems.org"];
309 sha256 = "1n137f1dg3cwl8dwmss61kgi21n0vg6nnkd7vymxssd1vzl4r3fs";
310 type = "gem";
311 };
312 version = "0.1.3";
313 };
302 bootsnap = { 314 bootsnap = {
303 dependencies = ["msgpack"]; 315 dependencies = ["msgpack"];
304 groups = ["default"]; 316 groups = ["default"];
305 platforms = []; 317 platforms = [];
306 source = { 318 source = {
307 remotes = ["https://rubygems.org"]; 319 remotes = ["https://rubygems.org"];
308 sha256 = "0g6r784lmjfhwi046w82phsk244byq9wkj1q3lddwxg9z559bmhy"; 320 sha256 = "1jcc0x0l3jqap8r8l1j994ljh93c8hcppm59mjzpa0hdvprh23av";
309 type = "gem"; 321 type = "gem";
310 }; 322 };
311 version = "1.3.2"; 323 version = "1.4.4";
312 }; 324 };
313 brakeman = { 325 brakeman = {
314 groups = ["development"]; 326 groups = ["development"];
315 platforms = []; 327 platforms = [];
316 source = { 328 source = {
317 remotes = ["https://rubygems.org"]; 329 remotes = ["https://rubygems.org"];
318 sha256 = "1fg37qknz1f10v4fgbn1s98gks0iimsgs1c8xra2jy16kpz4q86k"; 330 sha256 = "0vqnhlswvrg5fpxszfkjmla85gdlvgspz0whlli730ydx648mi68";
319 type = "gem"; 331 type = "gem";
320 }; 332 };
321 version = "4.4.0"; 333 version = "4.5.1";
322 }; 334 };
323 browser = { 335 browser = {
324 groups = ["default"]; 336 groups = ["default"];
@@ -346,10 +358,10 @@
346 platforms = []; 358 platforms = [];
347 source = { 359 source = {
348 remotes = ["https://rubygems.org"]; 360 remotes = ["https://rubygems.org"];
349 sha256 = "0fhsq5r9xc3cb32zr21hnsb2zmwbkck7xjvds9ny4inhykrjg47m"; 361 sha256 = "0i00v399i0g8wba5kw32qhx15bygih8fcr59c9qvy2mpwcqaspv5";
350 type = "gem"; 362 type = "gem";
351 }; 363 };
352 version = "5.9.0"; 364 version = "6.0.0";
353 }; 365 };
354 bundler-audit = { 366 bundler-audit = {
355 dependencies = ["thor"]; 367 dependencies = ["thor"];
@@ -367,10 +379,10 @@
367 platforms = []; 379 platforms = [];
368 source = { 380 source = {
369 remotes = ["https://rubygems.org"]; 381 remotes = ["https://rubygems.org"];
370 sha256 = "10znc1hjv8n686hhpl08f3m2g6h08a4b83nxblqwy2kqamkxcqf8"; 382 sha256 = "1vk10jinfp345s2cb4ba7d0jcxj3phbgvab0by4a3ln2d376mkj4";
371 type = "gem"; 383 type = "gem";
372 }; 384 };
373 version = "10.0.2"; 385 version = "11.0.0";
374 }; 386 };
375 capistrano = { 387 capistrano = {
376 dependencies = ["airbrussh" "i18n" "rake" "sshkit"]; 388 dependencies = ["airbrussh" "i18n" "rake" "sshkit"];
@@ -433,10 +445,10 @@
433 platforms = []; 445 platforms = [];
434 source = { 446 source = {
435 remotes = ["https://rubygems.org"]; 447 remotes = ["https://rubygems.org"];
436 sha256 = "0lhif97mh6wlqf14lwgvyjipm7ip6dz3svwgs52kgd5p3qb6hy2b"; 448 sha256 = "0zg182fa19w0n19v6l72ly2rsyd4x5jvph2bfrm1fjba6wwxn20h";
437 type = "gem"; 449 type = "gem";
438 }; 450 };
439 version = "3.12.0"; 451 version = "3.24.0";
440 }; 452 };
441 case_transform = { 453 case_transform = {
442 dependencies = ["activesupport"]; 454 dependencies = ["activesupport"];
@@ -486,10 +498,10 @@
486 platforms = []; 498 platforms = [];
487 source = { 499 source = {
488 remotes = ["https://rubygems.org"]; 500 remotes = ["https://rubygems.org"];
489 sha256 = "1a3q025jqfwf8id1g40cv7s5pn7mdwzjpgqyzhdxdci1ps5ycgmn"; 501 sha256 = "06p4jgrr0zixqnflmg5dcrbmhlnmll85j7vxkrjmnng293cwvzgw";
490 type = "gem"; 502 type = "gem";
491 }; 503 };
492 version = "3.2.3"; 504 version = "3.2.4";
493 }; 505 };
494 climate_control = { 506 climate_control = {
495 groups = ["test"]; 507 groups = ["test"];
@@ -527,10 +539,10 @@
527 platforms = []; 539 platforms = [];
528 source = { 540 source = {
529 remotes = ["https://rubygems.org"]; 541 remotes = ["https://rubygems.org"];
530 sha256 = "1ixcx9pfissxrga53jbdpza85qd5f6b5nq1sfqa9rnfq82qnlbp1"; 542 sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an";
531 type = "gem"; 543 type = "gem";
532 }; 544 };
533 version = "1.1.4"; 545 version = "1.1.5";
534 }; 546 };
535 connection_pool = { 547 connection_pool = {
536 groups = ["default" "test"]; 548 groups = ["default" "test"];
@@ -601,10 +613,10 @@
601 platforms = []; 613 platforms = [];
602 source = { 614 source = {
603 remotes = ["https://rubygems.org"]; 615 remotes = ["https://rubygems.org"];
604 sha256 = "1vs8nibl568ghm6a7hbw6xgcv8zbm4gykprcxpnzi7bz5d4gvcjx"; 616 sha256 = "04b2p61mqfb6ln8s2lhmvnkd45wjjinykbn9svmhs54kacrrjkcf";
605 type = "gem"; 617 type = "gem";
606 }; 618 };
607 version = "4.5.0"; 619 version = "4.6.2";
608 }; 620 };
609 devise-two-factor = { 621 devise-two-factor = {
610 dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; 622 dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"];
@@ -665,20 +677,20 @@
665 platforms = []; 677 platforms = [];
666 source = { 678 source = {
667 remotes = ["https://rubygems.org"]; 679 remotes = ["https://rubygems.org"];
668 sha256 = "0488m6nwp31mxrhayj60gsb7jgyw1lzh73r2kldx00a9bw3634d4"; 680 sha256 = "0zz92d57v1gcvbch9s9dw33x7mklgp1m5h2bicnzcc329rsia5gz";
669 type = "gem"; 681 type = "gem";
670 }; 682 };
671 version = "5.0.2"; 683 version = "5.1.0";
672 }; 684 };
673 dotenv = { 685 dotenv = {
674 groups = ["default"]; 686 groups = ["default"];
675 platforms = []; 687 platforms = [];
676 source = { 688 source = {
677 remotes = ["https://rubygems.org"]; 689 remotes = ["https://rubygems.org"];
678 sha256 = "0rgl2kqhnxqbjvi9brbvb52iaq1z8yi0pl0bawk4fm6kl9igxr8f"; 690 sha256 = "13cis6bf06hmz744xrsl163p6gb78xcm8g8q4pcabsy5ywyv6kag";
679 type = "gem"; 691 type = "gem";
680 }; 692 };
681 version = "2.6.0"; 693 version = "2.7.2";
682 }; 694 };
683 dotenv-rails = { 695 dotenv-rails = {
684 dependencies = ["dotenv" "railties"]; 696 dependencies = ["dotenv" "railties"];
@@ -686,10 +698,10 @@
686 platforms = []; 698 platforms = [];
687 source = { 699 source = {
688 remotes = ["https://rubygems.org"]; 700 remotes = ["https://rubygems.org"];
689 sha256 = "1knzdflmy06bjwvi00kndcmh2bhzqna9ccmz9mbyc3xc0v5jr9h8"; 701 sha256 = "0ih7nx7byiaws3w4vsb82fcfkgw4z14y8rclhnxmpghj0kn4871s";
690 type = "gem"; 702 type = "gem";
691 }; 703 };
692 version = "2.6.0"; 704 version = "2.7.2";
693 }; 705 };
694 elasticsearch = { 706 elasticsearch = {
695 dependencies = ["elasticsearch-api" "elasticsearch-transport"]; 707 dependencies = ["elasticsearch-api" "elasticsearch-transport"];
@@ -790,10 +802,10 @@
790 platforms = []; 802 platforms = [];
791 source = { 803 source = {
792 remotes = ["https://rubygems.org"]; 804 remotes = ["https://rubygems.org"];
793 sha256 = "0an28kjand4mjbkmnwd9fmgq3y5vf717zpmiijavar3sxqj52zri"; 805 sha256 = "107jd1vwyg890xv9lvnyfnrx5pwqk38cx880m4pg7i98902y5796";
794 type = "gem"; 806 type = "gem";
795 }; 807 };
796 version = "2.20.1"; 808 version = "2.20.2";
797 }; 809 };
798 faker = { 810 faker = {
799 dependencies = ["i18n"]; 811 dependencies = ["i18n"];
@@ -801,10 +813,10 @@
801 platforms = []; 813 platforms = [];
802 source = { 814 source = {
803 remotes = ["https://rubygems.org"]; 815 remotes = ["https://rubygems.org"];
804 sha256 = "01q7wrk5bl0c0qrvg2my3kl0mbfnj1jpd89mqm3fzy4ggbkdhh7i"; 816 sha256 = "1vslyqmk9gjvp1ahyfqmwy1jcyv75rp88hxwpy7cdk2lpdb1jp3l";
805 type = "gem"; 817 type = "gem";
806 }; 818 };
807 version = "1.9.1"; 819 version = "1.9.3";
808 }; 820 };
809 faraday = { 821 faraday = {
810 dependencies = ["multipart-post"]; 822 dependencies = ["multipart-post"];
@@ -838,14 +850,14 @@
838 version = "2.1.5"; 850 version = "2.1.5";
839 }; 851 };
840 ffi = { 852 ffi = {
841 groups = ["default" "development"]; 853 groups = ["default"];
842 platforms = []; 854 platforms = [];
843 source = { 855 source = {
844 remotes = ["https://rubygems.org"]; 856 remotes = ["https://rubygems.org"];
845 sha256 = "0jpm2dis1j7zvvy3lg7axz9jml316zrn7s0j59vyq3qr127z0m7q"; 857 sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p";
846 type = "gem"; 858 type = "gem";
847 }; 859 };
848 version = "1.9.25"; 860 version = "1.10.0";
849 }; 861 };
850 fog-core = { 862 fog-core = {
851 dependencies = ["builder" "excon" "formatador" "mime-types"]; 863 dependencies = ["builder" "excon" "formatador" "mime-types"];
@@ -907,10 +919,10 @@
907 platforms = []; 919 platforms = [];
908 source = { 920 source = {
909 remotes = ["https://rubygems.org"]; 921 remotes = ["https://rubygems.org"];
910 sha256 = "1sqkr1nh49rlm86l3qyrgsdqavgqii4pnrjn7855z6dfavh3spxr"; 922 sha256 = "169nyc9yqdv8rjfc6g56d1arr0vrcbw4rn02m27g5v0n6405jp85";
911 type = "gem"; 923 type = "gem";
912 }; 924 };
913 version = "2.3.2"; 925 version = "2.4.1";
914 }; 926 };
915 get_process_mem = { 927 get_process_mem = {
916 groups = ["default" "development"]; 928 groups = ["default" "development"];
@@ -928,10 +940,10 @@
928 platforms = []; 940 platforms = [];
929 source = { 941 source = {
930 remotes = ["https://rubygems.org"]; 942 remotes = ["https://rubygems.org"];
931 sha256 = "02smrgdi11kziqi9zhnsy9i6yr2fnxrqlv3lllsvdjki3cd4is38"; 943 sha256 = "1zkxndvck72bfw235bd9nl2ii0lvs5z88q14706cmn702ww2mxv1";
932 type = "gem"; 944 type = "gem";
933 }; 945 };
934 version = "0.4.1"; 946 version = "0.4.2";
935 }; 947 };
936 goldfinger = { 948 goldfinger = {
937 dependencies = ["addressable" "http" "nokogiri" "oj"]; 949 dependencies = ["addressable" "http" "nokogiri" "oj"];
@@ -950,10 +962,10 @@
950 platforms = []; 962 platforms = [];
951 source = { 963 source = {
952 remotes = ["https://rubygems.org"]; 964 remotes = ["https://rubygems.org"];
953 sha256 = "0hk338vkzmwszxdh0q02iw88rbr3bj3fd7fzn4psm8wy80zcgl9i"; 965 sha256 = "17qn9w4100v9mkd4i8qbzs1d5ambdsqq0y1j6hhxbcldbqcznbvx";
954 type = "gem"; 966 type = "gem";
955 }; 967 };
956 version = "2.8.8"; 968 version = "2.9.3";
957 }; 969 };
958 hamlit-rails = { 970 hamlit-rails = {
959 dependencies = ["actionpack" "activesupport" "hamlit" "railties"]; 971 dependencies = ["actionpack" "activesupport" "hamlit" "railties"];
@@ -961,10 +973,10 @@
961 platforms = []; 973 platforms = [];
962 source = { 974 source = {
963 remotes = ["https://rubygems.org"]; 975 remotes = ["https://rubygems.org"];
964 sha256 = "14gzlp6w1j3b5fb4bhbjjh24skx031vnfc2shym9bkmq3r0p8dws"; 976 sha256 = "0v75yd6x0nwky83smd9hw5ym9h0pi32jrzbnvq55pzj0rc95gg2p";
965 type = "gem"; 977 type = "gem";
966 }; 978 };
967 version = "0.2.0"; 979 version = "0.2.3";
968 }; 980 };
969 hamster = { 981 hamster = {
970 dependencies = ["concurrent-ruby"]; 982 dependencies = ["concurrent-ruby"];
@@ -982,10 +994,10 @@
982 platforms = []; 994 platforms = [];
983 source = { 995 source = {
984 remotes = ["https://rubygems.org"]; 996 remotes = ["https://rubygems.org"];
985 sha256 = "0yj5l2rw8i8jc725hbcpc4wks0qlaaimr3dpaqamfjkjkxl0hjp9"; 997 sha256 = "1ncwxv7jbm3jj9phv6dd514463bkjwggxk10n2z100wf4cjcicrk";
986 type = "gem"; 998 type = "gem";
987 }; 999 };
988 version = "0.3.7"; 1000 version = "0.4.0";
989 }; 1001 };
990 hashie = { 1002 hashie = {
991 groups = ["default"]; 1003 groups = ["default"];
@@ -1012,10 +1024,10 @@
1012 platforms = []; 1024 platforms = [];
1013 source = { 1025 source = {
1014 remotes = ["https://rubygems.org"]; 1026 remotes = ["https://rubygems.org"];
1015 sha256 = "069sz5qmjpmv3x7kr5r3rwl20m9vqg97p15scmjdagglra34clkl"; 1027 sha256 = "0gr6pckj2jayxw1gdgh9193j5jag5zrrqqlrnl4jvcwpyd3sn2zc";
1016 type = "gem"; 1028 type = "gem";
1017 }; 1029 };
1018 version = "2.0.0"; 1030 version = "2.0.1";
1019 }; 1031 };
1020 hiredis = { 1032 hiredis = {
1021 groups = ["default"]; 1033 groups = ["default"];
@@ -1107,10 +1119,10 @@
1107 platforms = []; 1119 platforms = [];
1108 source = { 1120 source = {
1109 remotes = ["https://rubygems.org"]; 1121 remotes = ["https://rubygems.org"];
1110 sha256 = "0grdjxfdbc4cffablh64iwyszskmv5sjpjz3zkp6xjxckdr7l7jj"; 1122 sha256 = "1s7g48hbzxabnf8i9gyw7q3710wnmni2lpqznnvpi8s4z7k58jdp";
1111 type = "gem"; 1123 type = "gem";
1112 }; 1124 };
1113 version = "1.2.0"; 1125 version = "1.3.1";
1114 }; 1126 };
1115 i18n = { 1127 i18n = {
1116 dependencies = ["concurrent-ruby"]; 1128 dependencies = ["concurrent-ruby"];
@@ -1118,10 +1130,10 @@
1118 platforms = []; 1130 platforms = [];
1119 source = { 1131 source = {
1120 remotes = ["https://rubygems.org"]; 1132 remotes = ["https://rubygems.org"];
1121 sha256 = "088xnnpi7hq243n44fmgqvjr0m86ivk8r87k9b3ddq3b7nl6nyf9"; 1133 sha256 = "1hfxnlyr618s25xpafw9mypa82qppjccbh292c4l3bj36az7f6wl";
1122 type = "gem"; 1134 type = "gem";
1123 }; 1135 };
1124 version = "1.5.2"; 1136 version = "1.6.0";
1125 }; 1137 };
1126 i18n-tasks = { 1138 i18n-tasks = {
1127 dependencies = ["activesupport" "ast" "erubi" "highline" "i18n" "parser" "rails-i18n" "rainbow" "terminal-table"]; 1139 dependencies = ["activesupport" "ast" "erubi" "highline" "i18n" "parser" "rails-i18n" "rainbow" "terminal-table"];
@@ -1129,10 +1141,10 @@
1129 platforms = []; 1141 platforms = [];
1130 source = { 1142 source = {
1131 remotes = ["https://rubygems.org"]; 1143 remotes = ["https://rubygems.org"];
1132 sha256 = "16592471ylgigmjx98pmbqibjwhavr4wb670kya9qh3nbgf7s1ym"; 1144 sha256 = "11h0chj0jpdfxpaglkr98l4qcwwpb8glh3dxar3inq9ccmsrdzaf";
1133 type = "gem"; 1145 type = "gem";
1134 }; 1146 };
1135 version = "0.9.28"; 1147 version = "0.9.29";
1136 }; 1148 };
1137 idn-ruby = { 1149 idn-ruby = {
1138 groups = ["default"]; 1150 groups = ["default"];
@@ -1328,10 +1340,10 @@
1328 platforms = []; 1340 platforms = [];
1329 source = { 1341 source = {
1330 remotes = ["https://rubygems.org"]; 1342 remotes = ["https://rubygems.org"];
1331 sha256 = "00lcn7s3slfn32di4qwlx2yj5f9r2pcnd0naxrvqqwypcg1z2sdd"; 1343 sha256 = "1vrjm4yqn5l6q5gsl72fmk95fl6j9z1a05gzbrwmsm3gp1a1bgac";
1332 type = "gem"; 1344 type = "gem";
1333 }; 1345 };
1334 version = "0.10.0"; 1346 version = "0.11.2";
1335 }; 1347 };
1336 loofah = { 1348 loofah = {
1337 dependencies = ["crass" "nokogiri"]; 1349 dependencies = ["crass" "nokogiri"];
@@ -1361,10 +1373,10 @@
1361 platforms = []; 1373 platforms = [];
1362 source = { 1374 source = {
1363 remotes = ["https://rubygems.org"]; 1375 remotes = ["https://rubygems.org"];
1364 sha256 = "1ri6r558nylaclqhfq1zhapfsyhryggln7gw69qb9i4c1rkfnyd2"; 1376 sha256 = "01n90s1jcc05dc9a70k3c3aa4gc9j49k9iv56n2k4jm949dacms6";
1365 type = "gem"; 1377 type = "gem";
1366 }; 1378 };
1367 version = "0.4.0"; 1379 version = "0.4.1";
1368 }; 1380 };
1369 marcel = { 1381 marcel = {
1370 dependencies = ["mimemagic"]; 1382 dependencies = ["mimemagic"];
@@ -1393,10 +1405,10 @@
1393 platforms = []; 1405 platforms = [];
1394 source = { 1406 source = {
1395 remotes = ["https://rubygems.org"]; 1407 remotes = ["https://rubygems.org"];
1396 sha256 = "0qir6bc2rw6lac6fsjhnspqyr01sh12d75dkd630qknjwvrrq8kj"; 1408 sha256 = "1xki7jrbzylsmk1brjibmhifb0x70skr55pdq4rvxcyrlnrrvyxz";
1397 type = "gem"; 1409 type = "gem";
1398 }; 1410 };
1399 version = "0.9.12"; 1411 version = "0.9.13";
1400 }; 1412 };
1401 method_source = { 1413 method_source = {
1402 groups = ["default" "development" "pam_authentication" "production" "test"]; 1414 groups = ["default" "development" "pam_authentication" "production" "test"];
@@ -1414,10 +1426,10 @@
1414 platforms = []; 1426 platforms = [];
1415 source = { 1427 source = {
1416 remotes = ["https://rubygems.org"]; 1428 remotes = ["https://rubygems.org"];
1417 sha256 = "14az36ax3n81fmwqjb5giixvxsnmxpnlfrsz012pl78x1bkrvfki"; 1429 sha256 = "12wj9lydba2dz5pqd6ngklwnzhsg63kl3yhi9zm8h9hjg6dsw3nb";
1418 type = "gem"; 1430 type = "gem";
1419 }; 1431 };
1420 version = "4.0.7"; 1432 version = "4.1.0";
1421 }; 1433 };
1422 mime-types = { 1434 mime-types = {
1423 dependencies = ["mime-types-data"]; 1435 dependencies = ["mime-types-data"];
@@ -1445,10 +1457,10 @@
1445 platforms = []; 1457 platforms = [];
1446 source = { 1458 source = {
1447 remotes = ["https://rubygems.org"]; 1459 remotes = ["https://rubygems.org"];
1448 sha256 = "00ibc1mhvdfyfyl103xwb45621nwyqxf124cni5hyfhag0fn1c3q"; 1460 sha256 = "04cp5sfbh1qx82yqxn0q75c7hlcx8y1dr5g3kyzwm4mx6wi2gifw";
1449 type = "gem"; 1461 type = "gem";
1450 }; 1462 };
1451 version = "0.3.2"; 1463 version = "0.3.3";
1452 }; 1464 };
1453 mini_mime = { 1465 mini_mime = {
1454 groups = ["default" "development" "test"]; 1466 groups = ["default" "development" "test"];
@@ -1485,10 +1497,10 @@
1485 platforms = []; 1497 platforms = [];
1486 source = { 1498 source = {
1487 remotes = ["https://rubygems.org"]; 1499 remotes = ["https://rubygems.org"];
1488 sha256 = "09xy1wc4wfbd1jdrzgxwmqjzfdfxbz0cqdszq2gv6rmc3gv1c864"; 1500 sha256 = "1w38hilm3dk42dwk8ygiq49bl4in7y80hfqr63hk54mj4gmzi6ch";
1489 type = "gem"; 1501 type = "gem";
1490 }; 1502 };
1491 version = "1.2.4"; 1503 version = "1.2.10";
1492 }; 1504 };
1493 multi_json = { 1505 multi_json = {
1494 groups = ["default"]; 1506 groups = ["default"];
@@ -1515,10 +1527,10 @@
1515 platforms = []; 1527 platforms = [];
1516 source = { 1528 source = {
1517 remotes = ["https://rubygems.org"]; 1529 remotes = ["https://rubygems.org"];
1518 sha256 = "0v9nhdkv6zrp7cn48xv7n2vjhsbslpvs0ha36mfkcd56cp27pavz"; 1530 sha256 = "112dvp7fz2xmbn4njzjsgqf1psnxiybj4yk6qbd843hyapn7i1hm";
1519 type = "gem"; 1531 type = "gem";
1520 }; 1532 };
1521 version = "0.4.0"; 1533 version = "0.5.0";
1522 }; 1534 };
1523 net-ldap = { 1535 net-ldap = {
1524 groups = ["default"]; 1536 groups = ["default"];
@@ -1567,10 +1579,10 @@
1567 platforms = []; 1579 platforms = [];
1568 source = { 1580 source = {
1569 remotes = ["https://rubygems.org"]; 1581 remotes = ["https://rubygems.org"];
1570 sha256 = "09zll7c6j7xr6wyvh5mm5ncj6pkryp70ybcsxdbw1nyphx5dh184"; 1582 sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4";
1571 type = "gem"; 1583 type = "gem";
1572 }; 1584 };
1573 version = "1.10.1"; 1585 version = "1.10.3";
1574 }; 1586 };
1575 nokogumbo = { 1587 nokogumbo = {
1576 dependencies = ["nokogiri"]; 1588 dependencies = ["nokogiri"];
@@ -1599,10 +1611,10 @@
1599 platforms = []; 1611 platforms = [];
1600 source = { 1612 source = {
1601 remotes = ["https://rubygems.org"]; 1613 remotes = ["https://rubygems.org"];
1602 sha256 = "0swv2ryjgbcyrisb2arf88rz0pf8d8f8g7iihc2fhz96a1h985n0"; 1614 sha256 = "0vd1270cg11nicr6d7ziizbphkp6bn5h55xp73gbnr5n7j11xy8a";
1603 type = "gem"; 1615 type = "gem";
1604 }; 1616 };
1605 version = "3.7.8"; 1617 version = "3.7.12";
1606 }; 1618 };
1607 omniauth = { 1619 omniauth = {
1608 dependencies = ["hashie" "rack"]; 1620 dependencies = ["hashie" "rack"];
@@ -1663,10 +1675,10 @@
1663 platforms = []; 1675 platforms = [];
1664 source = { 1676 source = {
1665 remotes = ["https://rubygems.org"]; 1677 remotes = ["https://rubygems.org"];
1666 sha256 = "15vkq18fp58504ld9vfakisxdmp68pk5y1bmmm5g7b0q25p8z5pq"; 1678 sha256 = "03w4s8pa9j6rk6vb7vwicdr0c3k03ngcf1s8gp1q8qwyrgwspc4r";
1667 type = "gem"; 1679 type = "gem";
1668 }; 1680 };
1669 version = "2.10.0"; 1681 version = "2.11.0";
1670 }; 1682 };
1671 paperclip = { 1683 paperclip = {
1672 dependencies = ["activemodel" "activesupport" "mime-types" "mimemagic" "terrapin"]; 1684 dependencies = ["activemodel" "activesupport" "mime-types" "mimemagic" "terrapin"];
@@ -1695,10 +1707,10 @@
1695 platforms = []; 1707 platforms = [];
1696 source = { 1708 source = {
1697 remotes = ["https://rubygems.org"]; 1709 remotes = ["https://rubygems.org"];
1698 sha256 = "005shcy8dabc7lwydpkbhd3fx8bfqzvsj6g04r90mx0wky10lz84"; 1710 sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r";
1699 type = "gem"; 1711 type = "gem";
1700 }; 1712 };
1701 version = "1.13.0"; 1713 version = "1.17.0";
1702 }; 1714 };
1703 parallel_tests = { 1715 parallel_tests = {
1704 dependencies = ["parallel"]; 1716 dependencies = ["parallel"];
@@ -1706,10 +1718,10 @@
1706 platforms = []; 1718 platforms = [];
1707 source = { 1719 source = {
1708 remotes = ["https://rubygems.org"]; 1720 remotes = ["https://rubygems.org"];
1709 sha256 = "13qgd5ajq1vm3ks8fl9vs4w4lx4s7ilm74w6vbyzi952mp6h4n2x"; 1721 sha256 = "1rxp2v34z1w107hks3892v04pnzq5kj85xplks53z6kamn7p1knx";
1710 type = "gem"; 1722 type = "gem";
1711 }; 1723 };
1712 version = "2.27.1"; 1724 version = "2.29.0";
1713 }; 1725 };
1714 parser = { 1726 parser = {
1715 dependencies = ["ast"]; 1727 dependencies = ["ast"];
@@ -1717,10 +1729,10 @@
1717 platforms = []; 1729 platforms = [];
1718 source = { 1730 source = {
1719 remotes = ["https://rubygems.org"]; 1731 remotes = ["https://rubygems.org"];
1720 sha256 = "1hhz2k5417vr2k1llwqgjdnmyrhlpqicy0y2arr6r1gp04fg9wlm"; 1732 sha256 = "1pnks149x0fzgqiw53qlmvcd8bi746cxdw03sjljby5s97p1fskn";
1721 type = "gem"; 1733 type = "gem";
1722 }; 1734 };
1723 version = "2.6.0.0"; 1735 version = "2.6.3.0";
1724 }; 1736 };
1725 pastel = { 1737 pastel = {
1726 dependencies = ["equatable" "tty-color"]; 1738 dependencies = ["equatable" "tty-color"];
@@ -1749,20 +1761,20 @@
1749 platforms = []; 1761 platforms = [];
1750 source = { 1762 source = {
1751 remotes = ["https://rubygems.org"]; 1763 remotes = ["https://rubygems.org"];
1752 sha256 = "0nvg9jwynnw3brignq6raka0abrcjmm8mr8yxhvybjpmr6lyyjrd"; 1764 sha256 = "0phn9xayg6kgpgyzbpcknwkdv6qqzb21556hb4ikkln8sx711cq0";
1753 type = "gem"; 1765 type = "gem";
1754 }; 1766 };
1755 version = "2.2.0"; 1767 version = "2.2.1";
1756 }; 1768 };
1757 pkg-config = { 1769 pkg-config = {
1758 groups = ["default"]; 1770 groups = ["default"];
1759 platforms = []; 1771 platforms = [];
1760 source = { 1772 source = {
1761 remotes = ["https://rubygems.org"]; 1773 remotes = ["https://rubygems.org"];
1762 sha256 = "0hhzz9q3c90bjh5ncq2rvw1gszkw6kq3zxjy5pdbha23p01v6fv8"; 1774 sha256 = "1s56ym0chq3fycl29vqabcalqdcf7y2f25pmihjwqgbmrmzdyvr1";
1763 type = "gem"; 1775 type = "gem";
1764 }; 1776 };
1765 version = "1.3.2"; 1777 version = "1.3.7";
1766 }; 1778 };
1767 posix-spawn = { 1779 posix-spawn = {
1768 groups = ["default"]; 1780 groups = ["default"];
@@ -1776,16 +1788,6 @@
1776 }; 1788 };
1777 version = "0.3.13"; 1789 version = "0.3.13";
1778 }; 1790 };
1779 powerpack = {
1780 groups = ["default" "development"];
1781 platforms = [];
1782 source = {
1783 remotes = ["https://rubygems.org"];
1784 sha256 = "1r51d67wd467rpdfl6x43y84vwm8f5ql9l9m85ak1s2sp3nc5hyv";
1785 type = "gem";
1786 };
1787 version = "0.1.2";
1788 };
1789 premailer = { 1791 premailer = {
1790 dependencies = ["addressable" "css_parser" "htmlentities"]; 1792 dependencies = ["addressable" "css_parser" "htmlentities"];
1791 groups = ["default"]; 1793 groups = ["default"];
@@ -1835,10 +1837,10 @@
1835 platforms = []; 1837 platforms = [];
1836 source = { 1838 source = {
1837 remotes = ["https://rubygems.org"]; 1839 remotes = ["https://rubygems.org"];
1838 sha256 = "0y2758593i2ij0nhmv0j1pbdfx2cgi52ns6wkij0frgnk2lf650g"; 1840 sha256 = "1aqz4gz8z44k6svpvcsfrqbigcpjd2kwvfm77yq3v8yzkhjrx0zi";
1839 type = "gem"; 1841 type = "gem";
1840 }; 1842 };
1841 version = "3.6.0"; 1843 version = "3.7.0";
1842 }; 1844 };
1843 pry-rails = { 1845 pry-rails = {
1844 dependencies = ["pry"]; 1846 dependencies = ["pry"];
@@ -1856,20 +1858,20 @@
1856 platforms = []; 1858 platforms = [];
1857 source = { 1859 source = {
1858 remotes = ["https://rubygems.org"]; 1860 remotes = ["https://rubygems.org"];
1859 sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; 1861 sha256 = "1c7c5xxkx91hwj4572hbnyvxmydb90q69wlpr2l0dxrmwx2p365l";
1860 type = "gem"; 1862 type = "gem";
1861 }; 1863 };
1862 version = "3.0.3"; 1864 version = "3.1.0";
1863 }; 1865 };
1864 puma = { 1866 puma = {
1865 groups = ["default"]; 1867 groups = ["default"];
1866 platforms = []; 1868 platforms = [];
1867 source = { 1869 source = {
1868 remotes = ["https://rubygems.org"]; 1870 remotes = ["https://rubygems.org"];
1869 sha256 = "1k7dqxnq0dnf5rxkgs9rknclkn3ah7lsdrk6nrqxla8qzy31wliq"; 1871 sha256 = "1pkrbvak6rlf147qpd4zss031qrwwh53g8s6017037iwg0436kv3";
1870 type = "gem"; 1872 type = "gem";
1871 }; 1873 };
1872 version = "3.12.0"; 1874 version = "3.12.1";
1873 }; 1875 };
1874 pundit = { 1876 pundit = {
1875 dependencies = ["activesupport"]; 1877 dependencies = ["activesupport"];
@@ -1897,10 +1899,10 @@
1897 platforms = []; 1899 platforms = [];
1898 source = { 1900 source = {
1899 remotes = ["https://rubygems.org"]; 1901 remotes = ["https://rubygems.org"];
1900 sha256 = "1pcgv8dv4vkaczzlix8q3j68capwhk420cddzijwqgi2qb4lm1zm"; 1902 sha256 = "0z90vflxbgjy2n84r7mbyax3i2vyvvrxxrf86ljzn5rw65jgnn2i";
1901 type = "gem"; 1903 type = "gem";
1902 }; 1904 };
1903 version = "2.0.6"; 1905 version = "2.0.7";
1904 }; 1906 };
1905 rack-attack = { 1907 rack-attack = {
1906 dependencies = ["rack"]; 1908 dependencies = ["rack"];
@@ -1908,20 +1910,20 @@
1908 platforms = []; 1910 platforms = [];
1909 source = { 1911 source = {
1910 remotes = ["https://rubygems.org"]; 1912 remotes = ["https://rubygems.org"];
1911 sha256 = "11y6kw7hj2z25ba67www6qap7shj2bp6s43h57cn4yrid9kbsibs"; 1913 sha256 = "1hbg2imjfs305iv6wglwn7jscksblxbsh92kf6qlkv97bwq63rfi";
1912 type = "gem"; 1914 type = "gem";
1913 }; 1915 };
1914 version = "5.4.2"; 1916 version = "6.0.0";
1915 }; 1917 };
1916 rack-cors = { 1918 rack-cors = {
1917 groups = ["default"]; 1919 groups = ["default"];
1918 platforms = []; 1920 platforms = [];
1919 source = { 1921 source = {
1920 remotes = ["https://rubygems.org"]; 1922 remotes = ["https://rubygems.org"];
1921 sha256 = "1j27vy1bmhbqcyzhxg8d07qassmax769xjalfwcwz6qfiq8cf013"; 1923 sha256 = "1dmg0f7zdmcn321fr05g568slzf8cmqgccavyhvx7c37ir040k4l";
1922 type = "gem"; 1924 type = "gem";
1923 }; 1925 };
1924 version = "1.0.2"; 1926 version = "1.0.3";
1925 }; 1927 };
1926 rack-protection = { 1928 rack-protection = {
1927 dependencies = ["rack"]; 1929 dependencies = ["rack"];
@@ -1940,10 +1942,10 @@
1940 platforms = []; 1942 platforms = [];
1941 source = { 1943 source = {
1942 remotes = ["https://rubygems.org"]; 1944 remotes = ["https://rubygems.org"];
1943 sha256 = "1igdsim4ifyx9rfcjbxcwmf2vnxca3f8wmr2sj9j118a21g455pp"; 1945 sha256 = "1v40xd3xhzhbdqfynd03gn88j1pga2zhrv58xs9fl4hzrlbp096s";
1944 type = "gem"; 1946 type = "gem";
1945 }; 1947 };
1946 version = "0.6.4"; 1948 version = "0.6.5";
1947 }; 1949 };
1948 rack-test = { 1950 rack-test = {
1949 dependencies = ["rack"]; 1951 dependencies = ["rack"];
@@ -1962,10 +1964,10 @@
1962 platforms = []; 1964 platforms = [];
1963 source = { 1965 source = {
1964 remotes = ["https://rubygems.org"]; 1966 remotes = ["https://rubygems.org"];
1965 sha256 = "1m9cszds68dsiycciiayd3c9g90s2yzn1izkr3gpgqkfw6dmvzyr"; 1967 sha256 = "1p7cszi3n9ksxchxnccmz61pd1i3rjg4813dsdinsm8xm5k1pdgr";
1966 type = "gem"; 1968 type = "gem";
1967 }; 1969 };
1968 version = "5.2.2"; 1970 version = "5.2.3";
1969 }; 1971 };
1970 rails-controller-testing = { 1972 rails-controller-testing = {
1971 dependencies = ["actionpack" "actionview" "activesupport"]; 1973 dependencies = ["actionpack" "actionview" "activesupport"];
@@ -2006,10 +2008,10 @@
2006 platforms = []; 2008 platforms = [];
2007 source = { 2009 source = {
2008 remotes = ["https://rubygems.org"]; 2010 remotes = ["https://rubygems.org"];
2009 sha256 = "05lkhc737a9dw0hd5ljmja0yp4cw39r3200s1r0n4bs7z1g3ka7l"; 2011 sha256 = "02kdlm7jgwvwnnc1amy8md2vl0f2jkfr6rr36vybclr9qm4fb80f";
2010 type = "gem"; 2012 type = "gem";
2011 }; 2013 };
2012 version = "5.1.2"; 2014 version = "5.1.3";
2013 }; 2015 };
2014 rails-settings-cached = { 2016 rails-settings-cached = {
2015 dependencies = ["rails"]; 2017 dependencies = ["rails"];
@@ -2028,10 +2030,10 @@
2028 platforms = []; 2030 platforms = [];
2029 source = { 2031 source = {
2030 remotes = ["https://rubygems.org"]; 2032 remotes = ["https://rubygems.org"];
2031 sha256 = "00pnylmbz4c46mxw5lhxi8h39lndfg6fs1hpd0qd6swnjhkqsr1l"; 2033 sha256 = "1gn9fwb5wm08fbj7zpilqgblfl315l5b7pg4jsvxlizvrzg8h8q4";
2032 type = "gem"; 2034 type = "gem";
2033 }; 2035 };
2034 version = "5.2.2"; 2036 version = "5.2.3";
2035 }; 2037 };
2036 rainbow = { 2038 rainbow = {
2037 groups = ["default" "development" "test"]; 2039 groups = ["default" "development" "test"];
@@ -2053,27 +2055,6 @@
2053 }; 2055 };
2054 version = "12.3.2"; 2056 version = "12.3.2";
2055 }; 2057 };
2056 rb-fsevent = {
2057 groups = ["default" "development"];
2058 platforms = [];
2059 source = {
2060 remotes = ["https://rubygems.org"];
2061 sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8";
2062 type = "gem";
2063 };
2064 version = "0.10.3";
2065 };
2066 rb-inotify = {
2067 dependencies = ["ffi"];
2068 groups = ["default" "development"];
2069 platforms = [];
2070 source = {
2071 remotes = ["https://rubygems.org"];
2072 sha256 = "0yfsgw5n7pkpyky6a9wkf1g9jafxb0ja7gz0qw0y14fd2jnzfh71";
2073 type = "gem";
2074 };
2075 version = "0.9.10";
2076 };
2077 rdf = { 2058 rdf = {
2078 dependencies = ["hamster" "link_header"]; 2059 dependencies = ["hamster" "link_header"];
2079 groups = ["default"]; 2060 groups = ["default"];
@@ -2101,10 +2082,10 @@
2101 platforms = []; 2082 platforms = [];
2102 source = { 2083 source = {
2103 remotes = ["https://rubygems.org"]; 2084 remotes = ["https://rubygems.org"];
2104 sha256 = "0rk6mmy3y2jd34llrf591ribl1p54ghkw7m96wrbamy8fwva5zqv"; 2085 sha256 = "1mymdx7s5sr4mablklaipz679ckczsiigswm1g2v5mc93yj5amw3";
2105 type = "gem"; 2086 type = "gem";
2106 }; 2087 };
2107 version = "4.1.0"; 2088 version = "4.1.2";
2108 }; 2089 };
2109 redis-actionpack = { 2090 redis-actionpack = {
2110 dependencies = ["actionpack" "redis-rack" "redis-store"]; 2091 dependencies = ["actionpack" "redis-rack" "redis-store"];
@@ -2177,10 +2158,10 @@
2177 platforms = []; 2158 platforms = [];
2178 source = { 2159 source = {
2179 remotes = ["https://rubygems.org"]; 2160 remotes = ["https://rubygems.org"];
2180 sha256 = "18g5jyg3blsdrz3mc8d87bms6qqn6gcdh1nvdhvgbjdpk9pw21dq"; 2161 sha256 = "0dsgjb3kszk6a82s6gl0h6a8vncjrxmcbk0r4mcxcdcad2b7vb2d";
2181 type = "gem"; 2162 type = "gem";
2182 }; 2163 };
2183 version = "1.3.0"; 2164 version = "1.5.1";
2184 }; 2165 };
2185 request_store = { 2166 request_store = {
2186 dependencies = ["rack"]; 2167 dependencies = ["rack"];
@@ -2199,10 +2180,10 @@
2199 platforms = []; 2180 platforms = [];
2200 source = { 2181 source = {
2201 remotes = ["https://rubygems.org"]; 2182 remotes = ["https://rubygems.org"];
2202 sha256 = "1rhdyyvvm26f2l3fgwdp6xasfl2y0whwgy766bhdwz697mf78zfn"; 2183 sha256 = "18lqbiyc7234vd6iwxia5yvvzg6bdvdwl2nm4a5y7ia5fxjl3kqm";
2203 type = "gem"; 2184 type = "gem";
2204 }; 2185 };
2205 version = "2.4.0"; 2186 version = "2.4.1";
2206 }; 2187 };
2207 rotp = { 2188 rotp = {
2208 groups = ["default"]; 2189 groups = ["default"];
@@ -2301,25 +2282,36 @@
2301 version = "3.8.0"; 2282 version = "3.8.0";
2302 }; 2283 };
2303 rubocop = { 2284 rubocop = {
2304 dependencies = ["jaro_winkler" "parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; 2285 dependencies = ["jaro_winkler" "parallel" "parser" "rainbow" "ruby-progressbar" "unicode-display_width"];
2286 groups = ["development"];
2287 platforms = [];
2288 source = {
2289 remotes = ["https://rubygems.org"];
2290 sha256 = "0mjyrf1dmf58i40izs8rp2j4mqnyd4qpah9svmkwhs33ckxsjh6b";
2291 type = "gem";
2292 };
2293 version = "0.71.0";
2294 };
2295 rubocop-rails = {
2296 dependencies = ["rack" "rubocop"];
2305 groups = ["development"]; 2297 groups = ["development"];
2306 platforms = []; 2298 platforms = [];
2307 source = { 2299 source = {
2308 remotes = ["https://rubygems.org"]; 2300 remotes = ["https://rubygems.org"];
2309 sha256 = "1pq00qwlmcv52dbhgbk534ggwn1ny9k3sq3vfb1zk3r4psnqz2jy"; 2301 sha256 = "133kf7zc03dgvday8p9m53kz4cqbp4i6w53ahqkfp88n3v5ji0ss";
2310 type = "gem"; 2302 type = "gem";
2311 }; 2303 };
2312 version = "0.63.1"; 2304 version = "2.0.1";
2313 }; 2305 };
2314 ruby-progressbar = { 2306 ruby-progressbar = {
2315 groups = ["default" "development" "test"]; 2307 groups = ["default" "development" "test"];
2316 platforms = []; 2308 platforms = [];
2317 source = { 2309 source = {
2318 remotes = ["https://rubygems.org"]; 2310 remotes = ["https://rubygems.org"];
2319 sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; 2311 sha256 = "1k77i0d4wsn23ggdd2msrcwfy0i376cglfqypkk2q77r2l3408zf";
2320 type = "gem"; 2312 type = "gem";
2321 }; 2313 };
2322 version = "1.10.0"; 2314 version = "1.10.1";
2323 }; 2315 };
2324 ruby-saml = { 2316 ruby-saml = {
2325 dependencies = ["nokogiri"]; 2317 dependencies = ["nokogiri"];
@@ -2348,10 +2340,10 @@
2348 platforms = []; 2340 platforms = [];
2349 source = { 2341 source = {
2350 remotes = ["https://rubygems.org"]; 2342 remotes = ["https://rubygems.org"];
2351 sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; 2343 sha256 = "0j7qv63p0vqcd838i2iy2f76c3dgwzkiz1d1xkg7n0pbnxj2vb56";
2352 type = "gem"; 2344 type = "gem";
2353 }; 2345 };
2354 version = "1.0.4"; 2346 version = "1.0.5";
2355 }; 2347 };
2356 sanitize = { 2348 sanitize = {
2357 dependencies = ["crass" "nokogiri" "nokogumbo"]; 2349 dependencies = ["crass" "nokogiri" "nokogumbo"];
@@ -2364,49 +2356,16 @@
2364 }; 2356 };
2365 version = "5.0.0"; 2357 version = "5.0.0";
2366 }; 2358 };
2367 sass = {
2368 dependencies = ["sass-listen"];
2369 groups = ["default" "development"];
2370 platforms = [];
2371 source = {
2372 remotes = ["https://rubygems.org"];
2373 sha256 = "18c6prbw9wl8bqhb2435pd9s0lzarl3g7xf8pmyla28zblvwxmyh";
2374 type = "gem";
2375 };
2376 version = "3.6.0";
2377 };
2378 sass-listen = {
2379 dependencies = ["rb-fsevent" "rb-inotify"];
2380 groups = ["default" "development"];
2381 platforms = [];
2382 source = {
2383 remotes = ["https://rubygems.org"];
2384 sha256 = "0xw3q46cmahkgyldid5hwyiwacp590zj2vmswlll68ryvmvcp7df";
2385 type = "gem";
2386 };
2387 version = "4.0.0";
2388 };
2389 scss_lint = {
2390 dependencies = ["rake" "sass"];
2391 groups = ["development"];
2392 platforms = [];
2393 source = {
2394 remotes = ["https://rubygems.org"];
2395 sha256 = "0dv4ff1lqbgqdx99nwg059c983dhw67kvvjd21f6vf62cjx09lpn";
2396 type = "gem";
2397 };
2398 version = "0.57.1";
2399 };
2400 sidekiq = { 2359 sidekiq = {
2401 dependencies = ["connection_pool" "rack" "rack-protection" "redis"]; 2360 dependencies = ["connection_pool" "rack" "rack-protection" "redis"];
2402 groups = ["default" "test"]; 2361 groups = ["default" "test"];
2403 platforms = []; 2362 platforms = [];
2404 source = { 2363 source = {
2405 remotes = ["https://rubygems.org"]; 2364 remotes = ["https://rubygems.org"];
2406 sha256 = "1caiq5f5z5vzfria554n04pcbwc8zixf1fpavaksly9zywr3pc29"; 2365 sha256 = "131zv8i341bkacxx7n1id2cmblkbs379farnibqg8c7bycd1iajq";
2407 type = "gem"; 2366 type = "gem";
2408 }; 2367 };
2409 version = "5.2.5"; 2368 version = "5.2.7";
2410 }; 2369 };
2411 sidekiq-bulk = { 2370 sidekiq-bulk = {
2412 dependencies = ["sidekiq"]; 2371 dependencies = ["sidekiq"];
@@ -2436,10 +2395,10 @@
2436 platforms = []; 2395 platforms = [];
2437 source = { 2396 source = {
2438 remotes = ["https://rubygems.org"]; 2397 remotes = ["https://rubygems.org"];
2439 sha256 = "13d58w83jx03w033mm77c42cd409by4idqca3nfbgq0bjx4hqwik"; 2398 sha256 = "14b6hiz41zhnn8mq2fyg8axdw6kzfqaybiyqqniprjgxm88md6xf";
2440 type = "gem"; 2399 type = "gem";
2441 }; 2400 };
2442 version = "6.0.8"; 2401 version = "6.0.13";
2443 }; 2402 };
2444 simple-navigation = { 2403 simple-navigation = {
2445 dependencies = ["activesupport"]; 2404 dependencies = ["activesupport"];
@@ -2564,20 +2523,20 @@
2564 platforms = []; 2523 platforms = [];
2565 source = { 2524 source = {
2566 remotes = ["https://rubygems.org"]; 2525 remotes = ["https://rubygems.org"];
2567 sha256 = "0scrffkhjx14rrk5cn01vg20y3vvhzzb47a7c9wa864aq8j8kw7z"; 2526 sha256 = "0767m9qm0k2xqp4z3cyy5mh3639cbfp0b43b6kk6w85zyi6w4dpq";
2568 type = "gem"; 2527 type = "gem";
2569 }; 2528 };
2570 version = "0.3.1"; 2529 version = "0.4.0";
2571 }; 2530 };
2572 temple = { 2531 temple = {
2573 groups = ["default"]; 2532 groups = ["default"];
2574 platforms = []; 2533 platforms = [];
2575 source = { 2534 source = {
2576 remotes = ["https://rubygems.org"]; 2535 remotes = ["https://rubygems.org"];
2577 sha256 = "00nxf610nzi4n1i2lkby43nrnarvl89fcl6lg19406msr0k3ycmq"; 2536 sha256 = "158d7ygbwcifqnvrph219p7m78yjdjazhykv5darbkms7bxm5y09";
2578 type = "gem"; 2537 type = "gem";
2579 }; 2538 };
2580 version = "0.8.0"; 2539 version = "0.8.1";
2581 }; 2540 };
2582 terminal-table = { 2541 terminal-table = {
2583 dependencies = ["unicode-display_width"]; 2542 dependencies = ["unicode-display_width"];
@@ -2626,20 +2585,10 @@
2626 platforms = []; 2585 platforms = [];
2627 source = { 2586 source = {
2628 remotes = ["https://rubygems.org"]; 2587 remotes = ["https://rubygems.org"];
2629 sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra"; 2588 sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz";
2630 type = "gem";
2631 };
2632 version = "2.0.8";
2633 };
2634 timers = {
2635 groups = ["default"];
2636 platforms = [];
2637 source = {
2638 remotes = ["https://rubygems.org"];
2639 sha256 = "04zbs9wyzajn7g9xfgg2zqz5kzf0qa7jgh4hgry4pfcxfmlnwdwx";
2640 type = "gem"; 2589 type = "gem";
2641 }; 2590 };
2642 version = "4.2.0"; 2591 version = "2.0.9";
2643 }; 2592 };
2644 tty-color = { 2593 tty-color = {
2645 groups = ["default"]; 2594 groups = ["default"];
@@ -2667,21 +2616,21 @@
2667 platforms = []; 2616 platforms = [];
2668 source = { 2617 source = {
2669 remotes = ["https://rubygems.org"]; 2618 remotes = ["https://rubygems.org"];
2670 sha256 = "1f4rsapf4apaxn11xnqrq7axgrlvn6pdlqxqb2g34jnpfh5yrk1i"; 2619 sha256 = "0prcxdy6qhqba4cv7hsy503b3bjciqk3j3hhzvcbij1kj2gh31c9";
2671 type = "gem"; 2620 type = "gem";
2672 }; 2621 };
2673 version = "0.6.0"; 2622 version = "0.7.0";
2674 }; 2623 };
2675 tty-prompt = { 2624 tty-prompt = {
2676 dependencies = ["necromancer" "pastel" "timers" "tty-cursor" "tty-reader"]; 2625 dependencies = ["necromancer" "pastel" "tty-reader"];
2677 groups = ["default"]; 2626 groups = ["default"];
2678 platforms = []; 2627 platforms = [];
2679 source = { 2628 source = {
2680 remotes = ["https://rubygems.org"]; 2629 remotes = ["https://rubygems.org"];
2681 sha256 = "1wjlsrzky7n7fr4psy2jbi4qpcixkq3196g0bbnmmjy6f26vrjcm"; 2630 sha256 = "0mz1v299m6nx6fvlj5jv6h5pvrrwa9pr7c2j5sap3gdab99x6irk";
2682 type = "gem"; 2631 type = "gem";
2683 }; 2632 };
2684 version = "0.18.1"; 2633 version = "0.19.0";
2685 }; 2634 };
2686 tty-reader = { 2635 tty-reader = {
2687 dependencies = ["tty-cursor" "tty-screen" "wisper"]; 2636 dependencies = ["tty-cursor" "tty-screen" "wisper"];
@@ -2689,20 +2638,20 @@
2689 platforms = []; 2638 platforms = [];
2690 source = { 2639 source = {
2691 remotes = ["https://rubygems.org"]; 2640 remotes = ["https://rubygems.org"];
2692 sha256 = "0r1cbfmkprp2m8jbf5f59jqn2zda7xqxj3gzdsgpz8v7arp9m3wn"; 2641 sha256 = "028b7ig858av4xwvvbzd96x52myn1a42b2abczjjwvhz6b1j94bn";
2693 type = "gem"; 2642 type = "gem";
2694 }; 2643 };
2695 version = "0.5.0"; 2644 version = "0.6.0";
2696 }; 2645 };
2697 tty-screen = { 2646 tty-screen = {
2698 groups = ["default"]; 2647 groups = ["default"];
2699 platforms = []; 2648 platforms = [];
2700 source = { 2649 source = {
2701 remotes = ["https://rubygems.org"]; 2650 remotes = ["https://rubygems.org"];
2702 sha256 = "0azpjgyhdm8ycblnx9crq3dgb2x8yg454a13n60zfpsc0n138sw1"; 2651 sha256 = "1143g05fs28ssgimaph6sdnsndd1wrpax9kjypvd2ripa1adm4kx";
2703 type = "gem"; 2652 type = "gem";
2704 }; 2653 };
2705 version = "0.6.5"; 2654 version = "0.7.0";
2706 }; 2655 };
2707 twitter-text = { 2656 twitter-text = {
2708 dependencies = ["unf"]; 2657 dependencies = ["unf"];
@@ -2732,10 +2681,10 @@
2732 platforms = []; 2681 platforms = [];
2733 source = { 2682 source = {
2734 remotes = ["https://rubygems.org"]; 2683 remotes = ["https://rubygems.org"];
2735 sha256 = "1jzl5cv7b5h24lh8s42s3j1ls0p27b5wmc4zdjs2j7hajgbdp19q"; 2684 sha256 = "1105fp27d527k7rrq1yx1ikbzf1sra046ndayxikkjvay9ql61jz";
2736 type = "gem"; 2685 type = "gem";
2737 }; 2686 };
2738 version = "1.2018.9"; 2687 version = "1.2019.1";
2739 }; 2688 };
2740 unf = { 2689 unf = {
2741 dependencies = ["unf_ext"]; 2690 dependencies = ["unf_ext"];
@@ -2763,10 +2712,10 @@
2763 platforms = []; 2712 platforms = [];
2764 source = { 2713 source = {
2765 remotes = ["https://rubygems.org"]; 2714 remotes = ["https://rubygems.org"];
2766 sha256 = "0bq528fibi8s0jmxz0xzlgzggdq0x4fx46wfqz49478pv8gb2diq"; 2715 sha256 = "08kfiniak1pvg3gn5k6snpigzvhvhyg7slmm0s2qx5zkj62c1z2w";
2767 type = "gem"; 2716 type = "gem";
2768 }; 2717 };
2769 version = "1.4.1"; 2718 version = "1.6.0";
2770 }; 2719 };
2771 uniform_notifier = { 2720 uniform_notifier = {
2772 groups = ["default" "development"]; 2721 groups = ["default" "development"];
@@ -2784,10 +2733,10 @@
2784 platforms = []; 2733 platforms = [];
2785 source = { 2734 source = {
2786 remotes = ["https://rubygems.org"]; 2735 remotes = ["https://rubygems.org"];
2787 sha256 = "0va966lhpylcwbqb9n151kkihx30agh0a57mwjwdxyanll4s1q12"; 2736 sha256 = "1fr9n9i9r82xb6i61fdw4xgc7zjv7fsdrr4k0njchy87iw9fl454";
2788 type = "gem"; 2737 type = "gem";
2789 }; 2738 };
2790 version = "1.2.7"; 2739 version = "1.2.8";
2791 }; 2740 };
2792 webmock = { 2741 webmock = {
2793 dependencies = ["addressable" "crack" "hashdiff"]; 2742 dependencies = ["addressable" "crack" "hashdiff"];
@@ -2795,10 +2744,10 @@
2795 platforms = []; 2744 platforms = [];
2796 source = { 2745 source = {
2797 remotes = ["https://rubygems.org"]; 2746 remotes = ["https://rubygems.org"];
2798 sha256 = "0gg0c2sxq7rni0b93w47h7p7cn590xdhf5va7ska48inpipwlgxp"; 2747 sha256 = "0anvrh9si2myf1k8p0rxh8pvmv6ldxd5gmk24ss3kvybmjqrcpwv";
2799 type = "gem"; 2748 type = "gem";
2800 }; 2749 };
2801 version = "3.5.1"; 2750 version = "3.6.0";
2802 }; 2751 };
2803 webpacker = { 2752 webpacker = {
2804 dependencies = ["activesupport" "rack-proxy" "railties"]; 2753 dependencies = ["activesupport" "rack-proxy" "railties"];
@@ -2806,10 +2755,10 @@
2806 platforms = []; 2755 platforms = [];
2807 source = { 2756 source = {
2808 remotes = ["https://rubygems.org"]; 2757 remotes = ["https://rubygems.org"];
2809 sha256 = "0bw01ihvxpy05xzz3wq6p9d3lw7n4x10ivfrh70hlrjyixmapws6"; 2758 sha256 = "08jd55y3kihsacgp4l0gvb64m9xixc7dpzjnyr40d6dy98bppz9y";
2810 type = "gem"; 2759 type = "gem";
2811 }; 2760 };
2812 version = "3.5.5"; 2761 version = "4.0.7";
2813 }; 2762 };
2814 webpush = { 2763 webpush = {
2815 dependencies = ["hkdf" "jwt"]; 2764 dependencies = ["hkdf" "jwt"];
@@ -2817,10 +2766,10 @@
2817 platforms = []; 2766 platforms = [];
2818 source = { 2767 source = {
2819 remotes = ["https://rubygems.org"]; 2768 remotes = ["https://rubygems.org"];
2820 sha256 = "1id7i4gdqck8wj6x22q8dljynvznvwn9f0pgi8h8jiy5dm7m0cf2"; 2769 sha256 = "0gi7aircw2bizk08pihr9srncjy9x9iy0ymp1qgchni639k1k05s";
2821 type = "gem"; 2770 type = "gem";
2822 }; 2771 };
2823 version = "0.3.6"; 2772 version = "0.3.8";
2824 }; 2773 };
2825 websocket-driver = { 2774 websocket-driver = {
2826 dependencies = ["websocket-extensions"]; 2775 dependencies = ["websocket-extensions"];
@@ -2864,4 +2813,4 @@
2864 }; 2813 };
2865 version = "3.2.0"; 2814 version = "3.2.0";
2866 }; 2815 };
2867} \ No newline at end of file 2816}
diff --git a/pkgs/webapps/mastodon/mastodon.json b/pkgs/webapps/mastodon/mastodon.json
index df73e8f6..ceb1778e 100644
--- a/pkgs/webapps/mastodon/mastodon.json
+++ b/pkgs/webapps/mastodon/mastodon.json
@@ -1,15 +1,15 @@
1{ 1{
2 "tag": "v2.7.4", 2 "tag": "v2.9.2",
3 "meta": { 3 "meta": {
4 "name": "mastodon", 4 "name": "mastodon",
5 "url": "https://github.com/tootsuite/mastodon", 5 "url": "https://github.com/tootsuite/mastodon",
6 "branch": "refs/tags/v2.7.4" 6 "branch": "refs/tags/v2.9.2"
7 }, 7 },
8 "github": { 8 "github": {
9 "owner": "tootsuite", 9 "owner": "tootsuite",
10 "repo": "mastodon", 10 "repo": "mastodon",
11 "rev": "a91349d45da18d3c85f68ae9be762dad6301c3cf", 11 "rev": "66ac1bd063882f5a2f828c1c702089e37f36f217",
12 "sha256": "0x16c2m8d9nszr9hjw6j1i8gicvpgxzli5afaqd0z144y0ar62qa", 12 "sha256": "0gdplny88qdind32gr5dm8brwwy05l6cf383kl5p0d7pjp5n9xj5",
13 "fetchSubmodules": true 13 "fetchSubmodules": true
14 } 14 }
15} 15}
diff --git a/pkgs/webapps/mastodon/yarn-packages.nix b/pkgs/webapps/mastodon/yarn-packages.nix
index feca6686..cca2efbf 100644
--- a/pkgs/webapps/mastodon/yarn-packages.nix
+++ b/pkgs/webapps/mastodon/yarn-packages.nix
@@ -12,20 +12,38 @@
12 } 12 }
13 13
14 { 14 {
15 name = "_babel_core___core_7.2.2.tgz"; 15 name = "_babel_core___core_7.3.4.tgz";
16 path = fetchurl { 16 path = fetchurl {
17 name = "_babel_core___core_7.2.2.tgz"; 17 name = "_babel_core___core_7.3.4.tgz";
18 url = "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz"; 18 url = "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz";
19 sha1 = "07adba6dde27bb5ad8d8672f15fde3e08184a687"; 19 sha1 = "921a5a13746c21e32445bf0798680e9d11a6530b";
20 }; 20 };
21 } 21 }
22 22
23 { 23 {
24 name = "_babel_generator___generator_7.2.2.tgz"; 24 name = "_babel_core___core_7.4.5.tgz";
25 path = fetchurl { 25 path = fetchurl {
26 name = "_babel_generator___generator_7.2.2.tgz"; 26 name = "_babel_core___core_7.4.5.tgz";
27 url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.2.tgz"; 27 url = "https://registry.yarnpkg.com/@babel/core/-/core-7.4.5.tgz";
28 sha1 = "18c816c70962640eab42fe8cae5f3947a5c65ccc"; 28 sha1 = "081f97e8ffca65a9b4b0fdc7e274e703f000c06a";
29 };
30 }
31
32 {
33 name = "_babel_generator___generator_7.3.4.tgz";
34 path = fetchurl {
35 name = "_babel_generator___generator_7.3.4.tgz";
36 url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz";
37 sha1 = "9aa48c1989257877a9d971296e5b73bfe72e446e";
38 };
39 }
40
41 {
42 name = "_babel_generator___generator_7.4.4.tgz";
43 path = fetchurl {
44 name = "_babel_generator___generator_7.4.4.tgz";
45 url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.4.tgz";
46 sha1 = "174a215eb843fc392c7edcaabeaa873de6e8f041";
29 }; 47 };
30 } 48 }
31 49
@@ -57,29 +75,29 @@
57 } 75 }
58 76
59 { 77 {
60 name = "_babel_helper_call_delegate___helper_call_delegate_7.1.0.tgz"; 78 name = "_babel_helper_call_delegate___helper_call_delegate_7.4.4.tgz";
61 path = fetchurl { 79 path = fetchurl {
62 name = "_babel_helper_call_delegate___helper_call_delegate_7.1.0.tgz"; 80 name = "_babel_helper_call_delegate___helper_call_delegate_7.4.4.tgz";
63 url = "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.1.0.tgz"; 81 url = "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz";
64 sha1 = "6a957f105f37755e8645343d3038a22e1449cc4a"; 82 sha1 = "87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43";
65 }; 83 };
66 } 84 }
67 85
68 { 86 {
69 name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.2.3.tgz"; 87 name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.4.4.tgz";
70 path = fetchurl { 88 path = fetchurl {
71 name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.2.3.tgz"; 89 name = "_babel_helper_create_class_features_plugin___helper_create_class_features_plugin_7.4.4.tgz";
72 url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.2.3.tgz"; 90 url = "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz";
73 sha1 = "f6e719abb90cb7f4a69591e35fd5eb89047c4a7c"; 91 sha1 = "fc3d690af6554cc9efc607364a82d48f58736dba";
74 }; 92 };
75 } 93 }
76 94
77 { 95 {
78 name = "_babel_helper_define_map___helper_define_map_7.1.0.tgz"; 96 name = "_babel_helper_define_map___helper_define_map_7.4.4.tgz";
79 path = fetchurl { 97 path = fetchurl {
80 name = "_babel_helper_define_map___helper_define_map_7.1.0.tgz"; 98 name = "_babel_helper_define_map___helper_define_map_7.4.4.tgz";
81 url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.1.0.tgz"; 99 url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz";
82 sha1 = "3b74caec329b3c80c116290887c0dd9ae468c20c"; 100 sha1 = "6969d1f570b46bdc900d1eba8e5d59c48ba2c12a";
83 }; 101 };
84 } 102 }
85 103
@@ -111,11 +129,11 @@
111 } 129 }
112 130
113 { 131 {
114 name = "_babel_helper_hoist_variables___helper_hoist_variables_7.0.0.tgz"; 132 name = "_babel_helper_hoist_variables___helper_hoist_variables_7.4.4.tgz";
115 path = fetchurl { 133 path = fetchurl {
116 name = "_babel_helper_hoist_variables___helper_hoist_variables_7.0.0.tgz"; 134 name = "_babel_helper_hoist_variables___helper_hoist_variables_7.4.4.tgz";
117 url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0.tgz"; 135 url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz";
118 sha1 = "46adc4c5e758645ae7a45deb92bab0918c23bb88"; 136 sha1 = "0298b5f25c8c09c53102d52ac4a98f773eb2850a";
119 }; 137 };
120 } 138 }
121 139
@@ -138,11 +156,11 @@
138 } 156 }
139 157
140 { 158 {
141 name = "_babel_helper_module_transforms___helper_module_transforms_7.2.2.tgz"; 159 name = "_babel_helper_module_transforms___helper_module_transforms_7.4.4.tgz";
142 path = fetchurl { 160 path = fetchurl {
143 name = "_babel_helper_module_transforms___helper_module_transforms_7.2.2.tgz"; 161 name = "_babel_helper_module_transforms___helper_module_transforms_7.4.4.tgz";
144 url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz"; 162 url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz";
145 sha1 = "ab2f8e8d231409f8370c883d20c335190284b963"; 163 sha1 = "96115ea42a2f139e619e98ed46df6019b94414b8";
146 }; 164 };
147 } 165 }
148 166
@@ -165,11 +183,11 @@
165 } 183 }
166 184
167 { 185 {
168 name = "_babel_helper_regex___helper_regex_7.0.0.tgz"; 186 name = "_babel_helper_regex___helper_regex_7.4.4.tgz";
169 path = fetchurl { 187 path = fetchurl {
170 name = "_babel_helper_regex___helper_regex_7.0.0.tgz"; 188 name = "_babel_helper_regex___helper_regex_7.4.4.tgz";
171 url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz"; 189 url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz";
172 sha1 = "2c1718923b57f9bbe64705ffe5640ac64d9bdb27"; 190 sha1 = "a47e02bc91fb259d2e6727c2a30013e3ac13c4a2";
173 }; 191 };
174 } 192 }
175 193
@@ -183,11 +201,11 @@
183 } 201 }
184 202
185 { 203 {
186 name = "_babel_helper_replace_supers___helper_replace_supers_7.2.3.tgz"; 204 name = "_babel_helper_replace_supers___helper_replace_supers_7.4.4.tgz";
187 path = fetchurl { 205 path = fetchurl {
188 name = "_babel_helper_replace_supers___helper_replace_supers_7.2.3.tgz"; 206 name = "_babel_helper_replace_supers___helper_replace_supers_7.4.4.tgz";
189 url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz"; 207 url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz";
190 sha1 = "19970020cf22677d62b3a689561dbd9644d8c5e5"; 208 sha1 = "aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27";
191 }; 209 };
192 } 210 }
193 211
@@ -201,11 +219,11 @@
201 } 219 }
202 220
203 { 221 {
204 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.0.0.tgz"; 222 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.4.4.tgz";
205 path = fetchurl { 223 path = fetchurl {
206 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.0.0.tgz"; 224 name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.4.4.tgz";
207 url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz"; 225 url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz";
208 sha1 = "3aae285c0311c2ab095d997b8c9a94cad547d813"; 226 sha1 = "ff94894a340be78f53f06af038b205c49d993677";
209 }; 227 };
210 } 228 }
211 229
@@ -228,6 +246,15 @@
228 } 246 }
229 247
230 { 248 {
249 name = "_babel_helpers___helpers_7.4.4.tgz";
250 path = fetchurl {
251 name = "_babel_helpers___helpers_7.4.4.tgz";
252 url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.4.tgz";
253 sha1 = "868b0ef59c1dd4e78744562d5ce1b59c89f2f2a5";
254 };
255 }
256
257 {
231 name = "_babel_highlight___highlight_7.0.0.tgz"; 258 name = "_babel_highlight___highlight_7.0.0.tgz";
232 path = fetchurl { 259 path = fetchurl {
233 name = "_babel_highlight___highlight_7.0.0.tgz"; 260 name = "_babel_highlight___highlight_7.0.0.tgz";
@@ -246,6 +273,24 @@
246 } 273 }
247 274
248 { 275 {
276 name = "_babel_parser___parser_7.3.4.tgz";
277 path = fetchurl {
278 name = "_babel_parser___parser_7.3.4.tgz";
279 url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz";
280 sha1 = "a43357e4bbf4b92a437fb9e465c192848287f27c";
281 };
282 }
283
284 {
285 name = "_babel_parser___parser_7.4.5.tgz";
286 path = fetchurl {
287 name = "_babel_parser___parser_7.4.5.tgz";
288 url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.5.tgz";
289 sha1 = "04af8d5d5a2b044a2a1bffacc1e5e6673544e872";
290 };
291 }
292
293 {
249 name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.2.0.tgz"; 294 name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.2.0.tgz";
250 path = fetchurl { 295 path = fetchurl {
251 name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.2.0.tgz"; 296 name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.2.0.tgz";
@@ -255,20 +300,20 @@
255 } 300 }
256 301
257 { 302 {
258 name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.2.3.tgz"; 303 name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.4.4.tgz";
259 path = fetchurl { 304 path = fetchurl {
260 name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.2.3.tgz"; 305 name = "_babel_plugin_proposal_class_properties___plugin_proposal_class_properties_7.4.4.tgz";
261 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.2.3.tgz"; 306 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz";
262 sha1 = "c9e1294363b346cff333007a92080f3203698461"; 307 sha1 = "93a6486eed86d53452ab9bab35e368e9461198ce";
263 }; 308 };
264 } 309 }
265 310
266 { 311 {
267 name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.2.3.tgz"; 312 name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.4.4.tgz";
268 path = fetchurl { 313 path = fetchurl {
269 name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.2.3.tgz"; 314 name = "_babel_plugin_proposal_decorators___plugin_proposal_decorators_7.4.4.tgz";
270 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.2.3.tgz"; 315 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz";
271 sha1 = "1fe5b0d22ce0c4418f225474ebd40267430364c0"; 316 sha1 = "de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0";
272 }; 317 };
273 } 318 }
274 319
@@ -282,11 +327,11 @@
282 } 327 }
283 328
284 { 329 {
285 name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.2.0.tgz"; 330 name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.4.4.tgz";
286 path = fetchurl { 331 path = fetchurl {
287 name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.2.0.tgz"; 332 name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.4.4.tgz";
288 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.2.0.tgz"; 333 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz";
289 sha1 = "88f5fec3e7ad019014c97f7ee3c992f0adbf7fb8"; 334 sha1 = "1ef173fcf24b3e2df92a678f027673b55e7e3005";
290 }; 335 };
291 } 336 }
292 337
@@ -300,11 +345,11 @@
300 } 345 }
301 346
302 { 347 {
303 name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.2.0.tgz"; 348 name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.4.4.tgz";
304 path = fetchurl { 349 path = fetchurl {
305 name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.2.0.tgz"; 350 name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.4.4.tgz";
306 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.2.0.tgz"; 351 url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz";
307 sha1 = "abe7281fe46c95ddc143a65e5358647792039520"; 352 sha1 = "501ffd9826c0b91da22690720722ac7cb1ca9c78";
308 }; 353 };
309 } 354 }
310 355
@@ -381,11 +426,11 @@
381 } 426 }
382 427
383 { 428 {
384 name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.2.0.tgz"; 429 name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.4.4.tgz";
385 path = fetchurl { 430 path = fetchurl {
386 name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.2.0.tgz"; 431 name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.4.4.tgz";
387 url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz"; 432 url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz";
388 sha1 = "68b8a438663e88519e65b776f8938f3445b1a2ff"; 433 sha1 = "a3f1d01f2f21cadab20b33a82133116f14fb5894";
389 }; 434 };
390 } 435 }
391 436
@@ -399,20 +444,20 @@
399 } 444 }
400 445
401 { 446 {
402 name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.2.0.tgz"; 447 name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.4.4.tgz";
403 path = fetchurl { 448 path = fetchurl {
404 name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.2.0.tgz"; 449 name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.4.4.tgz";
405 url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz"; 450 url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz";
406 sha1 = "f17c49d91eedbcdf5dd50597d16f5f2f770132d4"; 451 sha1 = "c13279fabf6b916661531841a23c4b7dae29646d";
407 }; 452 };
408 } 453 }
409 454
410 { 455 {
411 name = "_babel_plugin_transform_classes___plugin_transform_classes_7.2.2.tgz"; 456 name = "_babel_plugin_transform_classes___plugin_transform_classes_7.4.4.tgz";
412 path = fetchurl { 457 path = fetchurl {
413 name = "_babel_plugin_transform_classes___plugin_transform_classes_7.2.2.tgz"; 458 name = "_babel_plugin_transform_classes___plugin_transform_classes_7.4.4.tgz";
414 url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz"; 459 url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz";
415 sha1 = "6c90542f210ee975aa2aa8c8b5af7fa73a126953"; 460 sha1 = "0ce4094cdafd709721076d3b9c38ad31ca715eb6";
416 }; 461 };
417 } 462 }
418 463
@@ -426,20 +471,20 @@
426 } 471 }
427 472
428 { 473 {
429 name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.2.0.tgz"; 474 name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.4.4.tgz";
430 path = fetchurl { 475 path = fetchurl {
431 name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.2.0.tgz"; 476 name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.4.4.tgz";
432 url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.2.0.tgz"; 477 url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz";
433 sha1 = "e75269b4b7889ec3a332cd0d0c8cff8fed0dc6f3"; 478 sha1 = "9d964717829cc9e4b601fc82a26a71a4d8faf20f";
434 }; 479 };
435 } 480 }
436 481
437 { 482 {
438 name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.2.0.tgz"; 483 name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.4.4.tgz";
439 path = fetchurl { 484 path = fetchurl {
440 name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.2.0.tgz"; 485 name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.4.4.tgz";
441 url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz"; 486 url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz";
442 sha1 = "f0aabb93d120a8ac61e925ea0ba440812dbe0e49"; 487 sha1 = "361a148bc951444312c69446d76ed1ea8e4450c3";
443 }; 488 };
444 } 489 }
445 490
@@ -462,20 +507,20 @@
462 } 507 }
463 508
464 { 509 {
465 name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.2.0.tgz"; 510 name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.4.4.tgz";
466 path = fetchurl { 511 path = fetchurl {
467 name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.2.0.tgz"; 512 name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.4.4.tgz";
468 url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.2.0.tgz"; 513 url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz";
469 sha1 = "ab7468befa80f764bb03d3cb5eef8cc998e1cad9"; 514 sha1 = "0267fc735e24c808ba173866c6c4d1440fc3c556";
470 }; 515 };
471 } 516 }
472 517
473 { 518 {
474 name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.2.0.tgz"; 519 name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.4.4.tgz";
475 path = fetchurl { 520 path = fetchurl {
476 name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.2.0.tgz"; 521 name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.4.4.tgz";
477 url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz"; 522 url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz";
478 sha1 = "f7930362829ff99a3174c39f0afcc024ef59731a"; 523 sha1 = "e1436116abb0610c2259094848754ac5230922ad";
479 }; 524 };
480 } 525 }
481 526
@@ -489,6 +534,15 @@
489 } 534 }
490 535
491 { 536 {
537 name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.2.0.tgz";
538 path = fetchurl {
539 name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.2.0.tgz";
540 url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz";
541 sha1 = "fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d";
542 };
543 }
544
545 {
492 name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.2.0.tgz"; 546 name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.2.0.tgz";
493 path = fetchurl { 547 path = fetchurl {
494 name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.2.0.tgz"; 548 name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.2.0.tgz";
@@ -498,20 +552,20 @@
498 } 552 }
499 553
500 { 554 {
501 name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.2.0.tgz"; 555 name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.4.4.tgz";
502 path = fetchurl { 556 path = fetchurl {
503 name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.2.0.tgz"; 557 name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.4.4.tgz";
504 url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.2.0.tgz"; 558 url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz";
505 sha1 = "c4f1933f5991d5145e9cfad1dfd848ea1727f404"; 559 sha1 = "0bef4713d30f1d78c2e59b3d6db40e60192cac1e";
506 }; 560 };
507 } 561 }
508 562
509 { 563 {
510 name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.2.0.tgz"; 564 name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.4.4.tgz";
511 path = fetchurl { 565 path = fetchurl {
512 name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.2.0.tgz"; 566 name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.4.4.tgz";
513 url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.2.0.tgz"; 567 url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz";
514 sha1 = "912bfe9e5ff982924c81d0937c92d24994bb9068"; 568 sha1 = "dc83c5665b07d6c2a7b224c00ac63659ea36a405";
515 }; 569 };
516 } 570 }
517 571
@@ -525,11 +579,20 @@
525 } 579 }
526 580
527 { 581 {
528 name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.0.0.tgz"; 582 name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.4.5.tgz";
583 path = fetchurl {
584 name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.4.5.tgz";
585 url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz";
586 sha1 = "9d269fd28a370258199b4294736813a60bbdd106";
587 };
588 }
589
590 {
591 name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.4.4.tgz";
529 path = fetchurl { 592 path = fetchurl {
530 name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.0.0.tgz"; 593 name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.4.4.tgz";
531 url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0.tgz"; 594 url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz";
532 sha1 = "ae8fbd89517fa7892d20e6564e641e8770c3aa4a"; 595 sha1 = "18d120438b0cc9ee95a47f2c72bc9768fbed60a5";
533 }; 596 };
534 } 597 }
535 598
@@ -543,11 +606,20 @@
543 } 606 }
544 607
545 { 608 {
546 name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.2.0.tgz"; 609 name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.4.4.tgz";
547 path = fetchurl { 610 path = fetchurl {
548 name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.2.0.tgz"; 611 name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.4.4.tgz";
549 url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz"; 612 url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz";
550 sha1 = "0d5ad15dc805e2ea866df4dd6682bfe76d1408c2"; 613 sha1 = "7556cf03f318bd2719fe4c922d2d808be5571e16";
614 };
615 }
616
617 {
618 name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.2.0.tgz";
619 path = fetchurl {
620 name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.2.0.tgz";
621 url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz";
622 sha1 = "03e33f653f5b25c4eb572c98b9485055b389e905";
551 }; 623 };
552 } 624 }
553 625
@@ -597,20 +669,29 @@
597 } 669 }
598 670
599 { 671 {
600 name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.0.0.tgz"; 672 name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.4.5.tgz";
601 path = fetchurl { 673 path = fetchurl {
602 name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.0.0.tgz"; 674 name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.4.5.tgz";
603 url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz"; 675 url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz";
604 sha1 = "5b41686b4ed40bef874d7ed6a84bdd849c13e0c1"; 676 sha1 = "629dc82512c55cee01341fb27bdfcb210354680f";
605 }; 677 };
606 } 678 }
607 679
608 { 680 {
609 name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.2.0.tgz"; 681 name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.2.0.tgz";
610 path = fetchurl { 682 path = fetchurl {
611 name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.2.0.tgz"; 683 name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.2.0.tgz";
612 url = "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.2.0.tgz"; 684 url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz";
613 sha1 = "566bc43f7d0aedc880eaddbd29168d0f248966ea"; 685 sha1 = "4792af87c998a49367597d07fedf02636d2e1634";
686 };
687 }
688
689 {
690 name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.4.4.tgz";
691 path = fetchurl {
692 name = "_babel_plugin_transform_runtime___plugin_transform_runtime_7.4.4.tgz";
693 url = "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.4.tgz";
694 sha1 = "a50f5d16e9c3a4ac18a1a9f9803c107c380bce08";
614 }; 695 };
615 } 696 }
616 697
@@ -642,11 +723,11 @@
642 } 723 }
643 724
644 { 725 {
645 name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.2.0.tgz"; 726 name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.4.4.tgz";
646 path = fetchurl { 727 path = fetchurl {
647 name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.2.0.tgz"; 728 name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.4.4.tgz";
648 url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz"; 729 url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz";
649 sha1 = "d87ed01b8eaac7a92473f608c97c089de2ba1e5b"; 730 sha1 = "9d28fea7bbce637fb7612a0750989d8321d4bcb0";
650 }; 731 };
651 } 732 }
652 733
@@ -660,20 +741,20 @@
660 } 741 }
661 742
662 { 743 {
663 name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.2.0.tgz"; 744 name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.4.4.tgz";
664 path = fetchurl { 745 path = fetchurl {
665 name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.2.0.tgz"; 746 name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.4.4.tgz";
666 url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz"; 747 url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz";
667 sha1 = "4eb8db16f972f8abb5062c161b8b115546ade08b"; 748 sha1 = "ab4634bb4f14d36728bf5978322b35587787970f";
668 }; 749 };
669 } 750 }
670 751
671 { 752 {
672 name = "_babel_preset_env___preset_env_7.2.3.tgz"; 753 name = "_babel_preset_env___preset_env_7.4.5.tgz";
673 path = fetchurl { 754 path = fetchurl {
674 name = "_babel_preset_env___preset_env_7.2.3.tgz"; 755 name = "_babel_preset_env___preset_env_7.4.5.tgz";
675 url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.2.3.tgz"; 756 url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.5.tgz";
676 sha1 = "948c8df4d4609c99c7e0130169f052ea6a7a8933"; 757 sha1 = "2fad7f62983d5af563b5f3139242755884998a58";
677 }; 758 };
678 } 759 }
679 760
@@ -705,6 +786,15 @@
705 } 786 }
706 787
707 { 788 {
789 name = "_babel_runtime___runtime_7.4.5.tgz";
790 path = fetchurl {
791 name = "_babel_runtime___runtime_7.4.5.tgz";
792 url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.5.tgz";
793 sha1 = "582bb531f5f9dc67d2fcb682979894f75e253f12";
794 };
795 }
796
797 {
708 name = "_babel_template___template_7.2.2.tgz"; 798 name = "_babel_template___template_7.2.2.tgz";
709 path = fetchurl { 799 path = fetchurl {
710 name = "_babel_template___template_7.2.2.tgz"; 800 name = "_babel_template___template_7.2.2.tgz";
@@ -714,6 +804,15 @@
714 } 804 }
715 805
716 { 806 {
807 name = "_babel_template___template_7.4.4.tgz";
808 path = fetchurl {
809 name = "_babel_template___template_7.4.4.tgz";
810 url = "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz";
811 sha1 = "f4b88d1225689a08f5bc3a17483545be9e4ed237";
812 };
813 }
814
815 {
717 name = "_babel_traverse___traverse_7.2.3.tgz"; 816 name = "_babel_traverse___traverse_7.2.3.tgz";
718 path = fetchurl { 817 path = fetchurl {
719 name = "_babel_traverse___traverse_7.2.3.tgz"; 818 name = "_babel_traverse___traverse_7.2.3.tgz";
@@ -723,6 +822,33 @@
723 } 822 }
724 823
725 { 824 {
825 name = "_babel_traverse___traverse_7.4.5.tgz";
826 path = fetchurl {
827 name = "_babel_traverse___traverse_7.4.5.tgz";
828 url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.5.tgz";
829 sha1 = "4e92d1728fd2f1897dafdd321efbff92156c3216";
830 };
831 }
832
833 {
834 name = "_babel_traverse___traverse_7.3.4.tgz";
835 path = fetchurl {
836 name = "_babel_traverse___traverse_7.3.4.tgz";
837 url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz";
838 sha1 = "1330aab72234f8dea091b08c4f8b9d05c7119e06";
839 };
840 }
841
842 {
843 name = "_babel_types___types_7.4.4.tgz";
844 path = fetchurl {
845 name = "_babel_types___types_7.4.4.tgz";
846 url = "https://registry.yarnpkg.com/@babel/types/-/types-7.4.4.tgz";
847 sha1 = "8db9e9a629bb7c29370009b4b779ed93fe57d5f0";
848 };
849 }
850
851 {
726 name = "_babel_types___types_7.2.2.tgz"; 852 name = "_babel_types___types_7.2.2.tgz";
727 path = fetchurl { 853 path = fetchurl {
728 name = "_babel_types___types_7.2.2.tgz"; 854 name = "_babel_types___types_7.2.2.tgz";
@@ -732,92 +858,272 @@
732 } 858 }
733 859
734 { 860 {
735 name = "_emotion_cache___cache_10.0.0.tgz"; 861 name = "_babel_types___types_7.3.4.tgz";
862 path = fetchurl {
863 name = "_babel_types___types_7.3.4.tgz";
864 url = "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz";
865 sha1 = "bf482eaeaffb367a28abbf9357a94963235d90ed";
866 };
867 }
868
869 {
870 name = "_clusterws_cws___cws_0.14.0.tgz";
871 path = fetchurl {
872 name = "_clusterws_cws___cws_0.14.0.tgz";
873 url = "https://registry.yarnpkg.com/@clusterws/cws/-/cws-0.14.0.tgz";
874 sha1 = "242824b6884454001340222a836db6f6c5e62bfb";
875 };
876 }
877
878 {
879 name = "_cnakazawa_watch___watch_1.0.3.tgz";
880 path = fetchurl {
881 name = "_cnakazawa_watch___watch_1.0.3.tgz";
882 url = "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz";
883 sha1 = "099139eaec7ebf07a27c1786a3ff64f39464d2ef";
884 };
885 }
886
887 {
888 name = "_emotion_babel_utils___babel_utils_0.6.10.tgz";
889 path = fetchurl {
890 name = "_emotion_babel_utils___babel_utils_0.6.10.tgz";
891 url = "https://registry.yarnpkg.com/@emotion/babel-utils/-/babel-utils-0.6.10.tgz";
892 sha1 = "83dbf3dfa933fae9fc566e54fbb45f14674c6ccc";
893 };
894 }
895
896 {
897 name = "_emotion_hash___hash_0.6.6.tgz";
898 path = fetchurl {
899 name = "_emotion_hash___hash_0.6.6.tgz";
900 url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.6.6.tgz";
901 sha1 = "62266c5f0eac6941fece302abad69f2ee7e25e44";
902 };
903 }
904
905 {
906 name = "_emotion_memoize___memoize_0.6.6.tgz";
907 path = fetchurl {
908 name = "_emotion_memoize___memoize_0.6.6.tgz";
909 url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.6.6.tgz";
910 sha1 = "004b98298d04c7ca3b4f50ca2035d4f60d2eed1b";
911 };
912 }
913
914 {
915 name = "_emotion_serialize___serialize_0.9.1.tgz";
916 path = fetchurl {
917 name = "_emotion_serialize___serialize_0.9.1.tgz";
918 url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.9.1.tgz";
919 sha1 = "a494982a6920730dba6303eb018220a2b629c145";
920 };
921 }
922
923 {
924 name = "_emotion_stylis___stylis_0.7.1.tgz";
925 path = fetchurl {
926 name = "_emotion_stylis___stylis_0.7.1.tgz";
927 url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.7.1.tgz";
928 sha1 = "50f63225e712d99e2b2b39c19c70fff023793ca5";
929 };
930 }
931
932 {
933 name = "_emotion_unitless___unitless_0.6.7.tgz";
934 path = fetchurl {
935 name = "_emotion_unitless___unitless_0.6.7.tgz";
936 url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.6.7.tgz";
937 sha1 = "53e9f1892f725b194d5e6a1684a7b394df592397";
938 };
939 }
940
941 {
942 name = "_emotion_utils___utils_0.8.2.tgz";
943 path = fetchurl {
944 name = "_emotion_utils___utils_0.8.2.tgz";
945 url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.8.2.tgz";
946 sha1 = "576ff7fb1230185b619a75d258cbc98f0867a8dc";
947 };
948 }
949
950 {
951 name = "_jest_console___console_24.7.1.tgz";
736 path = fetchurl { 952 path = fetchurl {
737 name = "_emotion_cache___cache_10.0.0.tgz"; 953 name = "_jest_console___console_24.7.1.tgz";
738 url = "https://registry.yarnpkg.com/@emotion/cache/-/cache-10.0.0.tgz"; 954 url = "https://registry.yarnpkg.com/@jest/console/-/console-24.7.1.tgz";
739 sha1 = "e22eadcb770de4131ec707c84207e9e1ce210413"; 955 sha1 = "32a9e42535a97aedfe037e725bd67e954b459545";
740 }; 956 };
741 } 957 }
742 958
743 { 959 {
744 name = "_emotion_hash___hash_0.7.1.tgz"; 960 name = "_jest_core___core_24.8.0.tgz";
745 path = fetchurl { 961 path = fetchurl {
746 name = "_emotion_hash___hash_0.7.1.tgz"; 962 name = "_jest_core___core_24.8.0.tgz";
747 url = "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.7.1.tgz"; 963 url = "https://registry.yarnpkg.com/@jest/core/-/core-24.8.0.tgz";
748 sha1 = "9833722341379fb7d67f06a4b00ab3c37913da53"; 964 sha1 = "fbbdcd42a41d0d39cddbc9f520c8bab0c33eed5b";
749 }; 965 };
750 } 966 }
751 967
752 { 968 {
753 name = "_emotion_memoize___memoize_0.7.1.tgz"; 969 name = "_jest_environment___environment_24.8.0.tgz";
754 path = fetchurl { 970 path = fetchurl {
755 name = "_emotion_memoize___memoize_0.7.1.tgz"; 971 name = "_jest_environment___environment_24.8.0.tgz";
756 url = "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.1.tgz"; 972 url = "https://registry.yarnpkg.com/@jest/environment/-/environment-24.8.0.tgz";
757 sha1 = "e93c13942592cf5ef01aa8297444dc192beee52f"; 973 sha1 = "0342261383c776bdd652168f68065ef144af0eac";
758 }; 974 };
759 } 975 }
760 976
761 { 977 {
762 name = "_emotion_serialize___serialize_0.11.3.tgz"; 978 name = "_jest_fake_timers___fake_timers_24.8.0.tgz";
763 path = fetchurl { 979 path = fetchurl {
764 name = "_emotion_serialize___serialize_0.11.3.tgz"; 980 name = "_jest_fake_timers___fake_timers_24.8.0.tgz";
765 url = "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-0.11.3.tgz"; 981 url = "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.8.0.tgz";
766 sha1 = "c4af2d96e3ddb9a749b7b567daa7556bcae45af2"; 982 sha1 = "2e5b80a4f78f284bcb4bd5714b8e10dd36a8d3d1";
767 }; 983 };
768 } 984 }
769 985
770 { 986 {
771 name = "_emotion_sheet___sheet_0.9.2.tgz"; 987 name = "_jest_reporters___reporters_24.8.0.tgz";
772 path = fetchurl { 988 path = fetchurl {
773 name = "_emotion_sheet___sheet_0.9.2.tgz"; 989 name = "_jest_reporters___reporters_24.8.0.tgz";
774 url = "https://registry.yarnpkg.com/@emotion/sheet/-/sheet-0.9.2.tgz"; 990 url = "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.8.0.tgz";
775 sha1 = "74e5c6b5e489a1ba30ab246ab5eedd96916487c4"; 991 sha1 = "075169cd029bddec54b8f2c0fc489fd0b9e05729";
776 }; 992 };
777 } 993 }
778 994
779 { 995 {
780 name = "_emotion_stylis___stylis_0.8.3.tgz"; 996 name = "_jest_source_map___source_map_24.3.0.tgz";
781 path = fetchurl { 997 path = fetchurl {
782 name = "_emotion_stylis___stylis_0.8.3.tgz"; 998 name = "_jest_source_map___source_map_24.3.0.tgz";
783 url = "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.3.tgz"; 999 url = "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.3.0.tgz";
784 sha1 = "3ca7e9bcb31b3cb4afbaeb66156d86ee85e23246"; 1000 sha1 = "563be3aa4d224caf65ff77edc95cd1ca4da67f28";
785 }; 1001 };
786 } 1002 }
787 1003
788 { 1004 {
789 name = "_emotion_unitless___unitless_0.7.3.tgz"; 1005 name = "_jest_test_result___test_result_24.8.0.tgz";
790 path = fetchurl { 1006 path = fetchurl {
791 name = "_emotion_unitless___unitless_0.7.3.tgz"; 1007 name = "_jest_test_result___test_result_24.8.0.tgz";
792 url = "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.3.tgz"; 1008 url = "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.8.0.tgz";
793 sha1 = "6310a047f12d21a1036fb031317219892440416f"; 1009 sha1 = "7675d0aaf9d2484caa65e048d9b467d160f8e9d3";
794 }; 1010 };
795 } 1011 }
796 1012
797 { 1013 {
798 name = "_emotion_utils___utils_0.11.1.tgz"; 1014 name = "_jest_test_sequencer___test_sequencer_24.8.0.tgz";
799 path = fetchurl { 1015 path = fetchurl {
800 name = "_emotion_utils___utils_0.11.1.tgz"; 1016 name = "_jest_test_sequencer___test_sequencer_24.8.0.tgz";
801 url = "https://registry.yarnpkg.com/@emotion/utils/-/utils-0.11.1.tgz"; 1017 url = "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz";
802 sha1 = "8529b7412a6eb4b48bdf6e720cc1b8e6e1e17628"; 1018 sha1 = "2f993bcf6ef5eb4e65e8233a95a3320248cf994b";
803 }; 1019 };
804 } 1020 }
805 1021
806 { 1022 {
807 name = "_emotion_weak_memoize___weak_memoize_0.2.2.tgz"; 1023 name = "_jest_transform___transform_24.8.0.tgz";
808 path = fetchurl { 1024 path = fetchurl {
809 name = "_emotion_weak_memoize___weak_memoize_0.2.2.tgz"; 1025 name = "_jest_transform___transform_24.8.0.tgz";
810 url = "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.2.tgz"; 1026 url = "https://registry.yarnpkg.com/@jest/transform/-/transform-24.8.0.tgz";
811 sha1 = "63985d3d8b02530e0869962f4da09142ee8e200e"; 1027 sha1 = "628fb99dce4f9d254c6fd9341e3eea262e06fef5";
812 }; 1028 };
813 } 1029 }
814 1030
815 { 1031 {
816 name = "_gfx_zopfli___zopfli_1.0.10.tgz"; 1032 name = "_jest_types___types_24.8.0.tgz";
817 path = fetchurl { 1033 path = fetchurl {
818 name = "_gfx_zopfli___zopfli_1.0.10.tgz"; 1034 name = "_jest_types___types_24.8.0.tgz";
819 url = "https://registry.yarnpkg.com/@gfx/zopfli/-/zopfli-1.0.10.tgz"; 1035 url = "https://registry.yarnpkg.com/@jest/types/-/types-24.8.0.tgz";
820 sha1 = "8cccfcbd670f676cb240812bcf8380c9a66da367"; 1036 sha1 = "f31e25948c58f0abd8c845ae26fcea1491dea7ad";
1037 };
1038 }
1039
1040 {
1041 name = "_types_babel__core___babel__core_7.1.0.tgz";
1042 path = fetchurl {
1043 name = "_types_babel__core___babel__core_7.1.0.tgz";
1044 url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.0.tgz";
1045 sha1 = "710f2487dda4dcfd010ca6abb2b4dc7394365c51";
1046 };
1047 }
1048
1049 {
1050 name = "_types_babel__generator___babel__generator_7.0.2.tgz";
1051 path = fetchurl {
1052 name = "_types_babel__generator___babel__generator_7.0.2.tgz";
1053 url = "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.0.2.tgz";
1054 sha1 = "d2112a6b21fad600d7674274293c85dce0cb47fc";
1055 };
1056 }
1057
1058 {
1059 name = "_types_babel__template___babel__template_7.0.2.tgz";
1060 path = fetchurl {
1061 name = "_types_babel__template___babel__template_7.0.2.tgz";
1062 url = "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz";
1063 sha1 = "4ff63d6b52eddac1de7b975a5223ed32ecea9307";
1064 };
1065 }
1066
1067 {
1068 name = "_types_babel__traverse___babel__traverse_7.0.6.tgz";
1069 path = fetchurl {
1070 name = "_types_babel__traverse___babel__traverse_7.0.6.tgz";
1071 url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.6.tgz";
1072 sha1 = "328dd1a8fc4cfe3c8458be9477b219ea158fd7b2";
1073 };
1074 }
1075
1076 {
1077 name = "_types_events___events_3.0.0.tgz";
1078 path = fetchurl {
1079 name = "_types_events___events_3.0.0.tgz";
1080 url = "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz";
1081 sha1 = "2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7";
1082 };
1083 }
1084
1085 {
1086 name = "_types_glob___glob_7.1.1.tgz";
1087 path = fetchurl {
1088 name = "_types_glob___glob_7.1.1.tgz";
1089 url = "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz";
1090 sha1 = "aa59a1c6e3fbc421e07ccd31a944c30eba521575";
1091 };
1092 }
1093
1094 {
1095 name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.1.tgz";
1096 path = fetchurl {
1097 name = "_types_istanbul_lib_coverage___istanbul_lib_coverage_2.0.1.tgz";
1098 url = "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz";
1099 sha1 = "42995b446db9a48a11a07ec083499a860e9138ff";
1100 };
1101 }
1102
1103 {
1104 name = "_types_istanbul_lib_report___istanbul_lib_report_1.1.1.tgz";
1105 path = fetchurl {
1106 name = "_types_istanbul_lib_report___istanbul_lib_report_1.1.1.tgz";
1107 url = "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz";
1108 sha1 = "e5471e7fa33c61358dd38426189c037a58433b8c";
1109 };
1110 }
1111
1112 {
1113 name = "_types_istanbul_reports___istanbul_reports_1.1.1.tgz";
1114 path = fetchurl {
1115 name = "_types_istanbul_reports___istanbul_reports_1.1.1.tgz";
1116 url = "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz";
1117 sha1 = "7a8cbf6a406f36c8add871625b278eaf0b0d255a";
1118 };
1119 }
1120
1121 {
1122 name = "_types_minimatch___minimatch_3.0.3.tgz";
1123 path = fetchurl {
1124 name = "_types_minimatch___minimatch_3.0.3.tgz";
1125 url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz";
1126 sha1 = "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d";
821 }; 1127 };
822 } 1128 }
823 1129
@@ -849,164 +1155,182 @@
849 } 1155 }
850 1156
851 { 1157 {
852 name = "_webassemblyjs_ast___ast_1.7.11.tgz"; 1158 name = "_types_stack_utils___stack_utils_1.0.1.tgz";
853 path = fetchurl { 1159 path = fetchurl {
854 name = "_webassemblyjs_ast___ast_1.7.11.tgz"; 1160 name = "_types_stack_utils___stack_utils_1.0.1.tgz";
855 url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.11.tgz"; 1161 url = "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz";
856 sha1 = "b988582cafbb2b095e8b556526f30c90d057cace"; 1162 sha1 = "0a851d3bd96498fa25c33ab7278ed3bd65f06c3e";
857 }; 1163 };
858 } 1164 }
859 1165
860 { 1166 {
861 name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.7.11.tgz"; 1167 name = "_types_yargs___yargs_12.0.9.tgz";
862 path = fetchurl { 1168 path = fetchurl {
863 name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.7.11.tgz"; 1169 name = "_types_yargs___yargs_12.0.9.tgz";
864 url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz"; 1170 url = "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.9.tgz";
865 sha1 = "a69f0af6502eb9a3c045555b1a6129d3d3f2e313"; 1171 sha1 = "693e76a52f61a2f1e7fb48c0eef167b95ea4ffd0";
866 }; 1172 };
867 } 1173 }
868 1174
869 { 1175 {
870 name = "_webassemblyjs_helper_api_error___helper_api_error_1.7.11.tgz"; 1176 name = "_webassemblyjs_ast___ast_1.8.5.tgz";
871 path = fetchurl { 1177 path = fetchurl {
872 name = "_webassemblyjs_helper_api_error___helper_api_error_1.7.11.tgz"; 1178 name = "_webassemblyjs_ast___ast_1.8.5.tgz";
873 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz"; 1179 url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz";
874 sha1 = "c7b6bb8105f84039511a2b39ce494f193818a32a"; 1180 sha1 = "51b1c5fe6576a34953bf4b253df9f0d490d9e359";
875 }; 1181 };
876 } 1182 }
877 1183
878 { 1184 {
879 name = "_webassemblyjs_helper_buffer___helper_buffer_1.7.11.tgz"; 1185 name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz";
880 path = fetchurl { 1186 path = fetchurl {
881 name = "_webassemblyjs_helper_buffer___helper_buffer_1.7.11.tgz"; 1187 name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz";
882 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz"; 1188 url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz";
883 sha1 = "3122d48dcc6c9456ed982debe16c8f37101df39b"; 1189 sha1 = "1ba926a2923613edce496fd5b02e8ce8a5f49721";
884 }; 1190 };
885 } 1191 }
886 1192
887 { 1193 {
888 name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.7.11.tgz"; 1194 name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz";
889 path = fetchurl { 1195 path = fetchurl {
890 name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.7.11.tgz"; 1196 name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz";
891 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz"; 1197 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz";
892 sha1 = "cf8f106e746662a0da29bdef635fcd3d1248364b"; 1198 sha1 = "c49dad22f645227c5edb610bdb9697f1aab721f7";
893 }; 1199 };
894 } 1200 }
895 1201
896 { 1202 {
897 name = "_webassemblyjs_helper_fsm___helper_fsm_1.7.11.tgz"; 1203 name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz";
898 path = fetchurl { 1204 path = fetchurl {
899 name = "_webassemblyjs_helper_fsm___helper_fsm_1.7.11.tgz"; 1205 name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz";
900 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz"; 1206 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz";
901 sha1 = "df38882a624080d03f7503f93e3f17ac5ac01181"; 1207 sha1 = "fea93e429863dd5e4338555f42292385a653f204";
902 }; 1208 };
903 } 1209 }
904 1210
905 { 1211 {
906 name = "_webassemblyjs_helper_module_context___helper_module_context_1.7.11.tgz"; 1212 name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz";
907 path = fetchurl { 1213 path = fetchurl {
908 name = "_webassemblyjs_helper_module_context___helper_module_context_1.7.11.tgz"; 1214 name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz";
909 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz"; 1215 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz";
910 sha1 = "d874d722e51e62ac202476935d649c802fa0e209"; 1216 sha1 = "9a740ff48e3faa3022b1dff54423df9aa293c25e";
911 }; 1217 };
912 } 1218 }
913 1219
914 { 1220 {
915 name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.7.11.tgz"; 1221 name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz";
916 path = fetchurl { 1222 path = fetchurl {
917 name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.7.11.tgz"; 1223 name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz";
918 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz"; 1224 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz";
919 sha1 = "dd9a1e817f1c2eb105b4cf1013093cb9f3c9cb06"; 1225 sha1 = "ba0b7d3b3f7e4733da6059c9332275d860702452";
920 }; 1226 };
921 } 1227 }
922 1228
923 { 1229 {
924 name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.7.11.tgz"; 1230 name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz";
925 path = fetchurl { 1231 path = fetchurl {
926 name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.7.11.tgz"; 1232 name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz";
927 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz"; 1233 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz";
928 sha1 = "9c9ac41ecf9fbcfffc96f6d2675e2de33811e68a"; 1234 sha1 = "def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245";
929 }; 1235 };
930 } 1236 }
931 1237
932 { 1238 {
933 name = "_webassemblyjs_ieee754___ieee754_1.7.11.tgz"; 1239 name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz";
934 path = fetchurl { 1240 path = fetchurl {
935 name = "_webassemblyjs_ieee754___ieee754_1.7.11.tgz"; 1241 name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz";
936 url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz"; 1242 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz";
937 sha1 = "c95839eb63757a31880aaec7b6512d4191ac640b"; 1243 sha1 = "537a750eddf5c1e932f3744206551c91c1b93e61";
938 }; 1244 };
939 } 1245 }
940 1246
941 { 1247 {
942 name = "_webassemblyjs_leb128___leb128_1.7.11.tgz"; 1248 name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz";
943 path = fetchurl { 1249 path = fetchurl {
944 name = "_webassemblyjs_leb128___leb128_1.7.11.tgz"; 1250 name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz";
945 url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.7.11.tgz"; 1251 url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz";
946 sha1 = "d7267a1ee9c4594fd3f7e37298818ec65687db63"; 1252 sha1 = "74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf";
947 }; 1253 };
948 } 1254 }
949 1255
950 { 1256 {
951 name = "_webassemblyjs_utf8___utf8_1.7.11.tgz"; 1257 name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz";
952 path = fetchurl { 1258 path = fetchurl {
953 name = "_webassemblyjs_utf8___utf8_1.7.11.tgz"; 1259 name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz";
954 url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.7.11.tgz"; 1260 url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz";
955 sha1 = "06d7218ea9fdc94a6793aa92208160db3d26ee82"; 1261 sha1 = "712329dbef240f36bf57bd2f7b8fb9bf4154421e";
956 }; 1262 };
957 } 1263 }
958 1264
959 { 1265 {
960 name = "_webassemblyjs_wasm_edit___wasm_edit_1.7.11.tgz"; 1266 name = "_webassemblyjs_leb128___leb128_1.8.5.tgz";
961 path = fetchurl { 1267 path = fetchurl {
962 name = "_webassemblyjs_wasm_edit___wasm_edit_1.7.11.tgz"; 1268 name = "_webassemblyjs_leb128___leb128_1.8.5.tgz";
963 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz"; 1269 url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz";
964 sha1 = "8c74ca474d4f951d01dbae9bd70814ee22a82005"; 1270 sha1 = "044edeb34ea679f3e04cd4fd9824d5e35767ae10";
965 }; 1271 };
966 } 1272 }
967 1273
968 { 1274 {
969 name = "_webassemblyjs_wasm_gen___wasm_gen_1.7.11.tgz"; 1275 name = "_webassemblyjs_utf8___utf8_1.8.5.tgz";
970 path = fetchurl { 1276 path = fetchurl {
971 name = "_webassemblyjs_wasm_gen___wasm_gen_1.7.11.tgz"; 1277 name = "_webassemblyjs_utf8___utf8_1.8.5.tgz";
972 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz"; 1278 url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz";
973 sha1 = "9bbba942f22375686a6fb759afcd7ac9c45da1a8"; 1279 sha1 = "a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc";
974 }; 1280 };
975 } 1281 }
976 1282
977 { 1283 {
978 name = "_webassemblyjs_wasm_opt___wasm_opt_1.7.11.tgz"; 1284 name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz";
979 path = fetchurl { 1285 path = fetchurl {
980 name = "_webassemblyjs_wasm_opt___wasm_opt_1.7.11.tgz"; 1286 name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz";
981 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz"; 1287 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz";
982 sha1 = "b331e8e7cef8f8e2f007d42c3a36a0580a7d6ca7"; 1288 sha1 = "962da12aa5acc1c131c81c4232991c82ce56e01a";
983 }; 1289 };
984 } 1290 }
985 1291
986 { 1292 {
987 name = "_webassemblyjs_wasm_parser___wasm_parser_1.7.11.tgz"; 1293 name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz";
988 path = fetchurl { 1294 path = fetchurl {
989 name = "_webassemblyjs_wasm_parser___wasm_parser_1.7.11.tgz"; 1295 name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz";
990 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz"; 1296 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz";
991 sha1 = "6e3d20fa6a3519f6b084ef9391ad58211efb0a1a"; 1297 sha1 = "54840766c2c1002eb64ed1abe720aded714f98bc";
992 }; 1298 };
993 } 1299 }
994 1300
995 { 1301 {
996 name = "_webassemblyjs_wast_parser___wast_parser_1.7.11.tgz"; 1302 name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz";
997 path = fetchurl { 1303 path = fetchurl {
998 name = "_webassemblyjs_wast_parser___wast_parser_1.7.11.tgz"; 1304 name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz";
999 url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz"; 1305 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz";
1000 sha1 = "25bd117562ca8c002720ff8116ef9072d9ca869c"; 1306 sha1 = "b24d9f6ba50394af1349f510afa8ffcb8a63d264";
1001 }; 1307 };
1002 } 1308 }
1003 1309
1004 { 1310 {
1005 name = "_webassemblyjs_wast_printer___wast_printer_1.7.11.tgz"; 1311 name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz";
1006 path = fetchurl { 1312 path = fetchurl {
1007 name = "_webassemblyjs_wast_printer___wast_printer_1.7.11.tgz"; 1313 name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz";
1008 url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz"; 1314 url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz";
1009 sha1 = "c4245b6de242cb50a2cc950174fdbf65c78d7813"; 1315 sha1 = "21576f0ec88b91427357b8536383668ef7c66b8d";
1316 };
1317 }
1318
1319 {
1320 name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz";
1321 path = fetchurl {
1322 name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz";
1323 url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz";
1324 sha1 = "e10eecd542d0e7bd394f6827c49f3df6d4eefb8c";
1325 };
1326 }
1327
1328 {
1329 name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz";
1330 path = fetchurl {
1331 name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz";
1332 url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz";
1333 sha1 = "114bbc481fd10ca0e23b3560fa812748b0bae5bc";
1010 }; 1334 };
1011 } 1335 }
1012 1336
@@ -1020,11 +1344,11 @@
1020 } 1344 }
1021 1345
1022 { 1346 {
1023 name = "_xtuc_long___long_4.2.1.tgz"; 1347 name = "_xtuc_long___long_4.2.2.tgz";
1024 path = fetchurl { 1348 path = fetchurl {
1025 name = "_xtuc_long___long_4.2.1.tgz"; 1349 name = "_xtuc_long___long_4.2.2.tgz";
1026 url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz"; 1350 url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz";
1027 sha1 = "5c85d662f76fa1d34575766c5dcd6615abcd30d8"; 1351 sha1 = "d291c6a4e97989b5c61d9acf396ae4fe133a718d";
1028 }; 1352 };
1029 } 1353 }
1030 1354
@@ -1047,20 +1371,20 @@
1047 } 1371 }
1048 1372
1049 { 1373 {
1050 name = "accepts___accepts_1.3.5.tgz"; 1374 name = "accepts___accepts_1.3.7.tgz";
1051 path = fetchurl { 1375 path = fetchurl {
1052 name = "accepts___accepts_1.3.5.tgz"; 1376 name = "accepts___accepts_1.3.7.tgz";
1053 url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz"; 1377 url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz";
1054 sha1 = "eb777df6011723a3b14e8a72c0805c8e86746bd2"; 1378 sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd";
1055 }; 1379 };
1056 } 1380 }
1057 1381
1058 { 1382 {
1059 name = "acorn_dynamic_import___acorn_dynamic_import_3.0.0.tgz"; 1383 name = "acorn_dynamic_import___acorn_dynamic_import_4.0.0.tgz";
1060 path = fetchurl { 1384 path = fetchurl {
1061 name = "acorn_dynamic_import___acorn_dynamic_import_3.0.0.tgz"; 1385 name = "acorn_dynamic_import___acorn_dynamic_import_4.0.0.tgz";
1062 url = "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz"; 1386 url = "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz";
1063 sha1 = "901ceee4c7faaef7e07ad2a47e890675da50a278"; 1387 sha1 = "482210140582a36b83c3e342e1cfebcaa9240948";
1064 }; 1388 };
1065 } 1389 }
1066 1390
@@ -1074,6 +1398,15 @@
1074 } 1398 }
1075 1399
1076 { 1400 {
1401 name = "acorn_jsx___acorn_jsx_3.0.1.tgz";
1402 path = fetchurl {
1403 name = "acorn_jsx___acorn_jsx_3.0.1.tgz";
1404 url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
1405 sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
1406 };
1407 }
1408
1409 {
1077 name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; 1410 name = "acorn_jsx___acorn_jsx_5.0.1.tgz";
1078 path = fetchurl { 1411 path = fetchurl {
1079 name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; 1412 name = "acorn_jsx___acorn_jsx_5.0.1.tgz";
@@ -1092,6 +1425,15 @@
1092 } 1425 }
1093 1426
1094 { 1427 {
1428 name = "acorn___acorn_3.3.0.tgz";
1429 path = fetchurl {
1430 name = "acorn___acorn_3.3.0.tgz";
1431 url = "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz";
1432 sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
1433 };
1434 }
1435
1436 {
1095 name = "acorn___acorn_5.7.3.tgz"; 1437 name = "acorn___acorn_5.7.3.tgz";
1096 path = fetchurl { 1438 path = fetchurl {
1097 name = "acorn___acorn_5.7.3.tgz"; 1439 name = "acorn___acorn_5.7.3.tgz";
@@ -1101,11 +1443,20 @@
1101 } 1443 }
1102 1444
1103 { 1445 {
1104 name = "acorn___acorn_6.0.4.tgz"; 1446 name = "acorn___acorn_6.1.1.tgz";
1105 path = fetchurl { 1447 path = fetchurl {
1106 name = "acorn___acorn_6.0.4.tgz"; 1448 name = "acorn___acorn_6.1.1.tgz";
1107 url = "https://registry.yarnpkg.com/acorn/-/acorn-6.0.4.tgz"; 1449 url = "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz";
1108 sha1 = "77377e7353b72ec5104550aa2d2097a2fd40b754"; 1450 sha1 = "7d25ae05bb8ad1f9b699108e1094ecd7884adc1f";
1451 };
1452 }
1453
1454 {
1455 name = "airbnb_prop_types___airbnb_prop_types_2.13.2.tgz";
1456 path = fetchurl {
1457 name = "airbnb_prop_types___airbnb_prop_types_2.13.2.tgz";
1458 url = "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.13.2.tgz";
1459 sha1 = "43147a5062dd2a4a5600e748a47b64004cc5f7fc";
1109 }; 1460 };
1110 } 1461 }
1111 1462
@@ -1119,6 +1470,15 @@
1119 } 1470 }
1120 1471
1121 { 1472 {
1473 name = "ajv_keywords___ajv_keywords_1.5.1.tgz";
1474 path = fetchurl {
1475 name = "ajv_keywords___ajv_keywords_1.5.1.tgz";
1476 url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz";
1477 sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c";
1478 };
1479 }
1480
1481 {
1122 name = "ajv_keywords___ajv_keywords_3.2.0.tgz"; 1482 name = "ajv_keywords___ajv_keywords_3.2.0.tgz";
1123 path = fetchurl { 1483 path = fetchurl {
1124 name = "ajv_keywords___ajv_keywords_3.2.0.tgz"; 1484 name = "ajv_keywords___ajv_keywords_3.2.0.tgz";
@@ -1128,6 +1488,15 @@
1128 } 1488 }
1129 1489
1130 { 1490 {
1491 name = "ajv___ajv_4.11.8.tgz";
1492 path = fetchurl {
1493 name = "ajv___ajv_4.11.8.tgz";
1494 url = "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz";
1495 sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
1496 };
1497 }
1498
1499 {
1131 name = "ajv___ajv_6.6.2.tgz"; 1500 name = "ajv___ajv_6.6.2.tgz";
1132 path = fetchurl { 1501 path = fetchurl {
1133 name = "ajv___ajv_6.6.2.tgz"; 1502 name = "ajv___ajv_6.6.2.tgz";
@@ -1155,6 +1524,15 @@
1155 } 1524 }
1156 1525
1157 { 1526 {
1527 name = "ansi_escapes___ansi_escapes_1.4.0.tgz";
1528 path = fetchurl {
1529 name = "ansi_escapes___ansi_escapes_1.4.0.tgz";
1530 url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
1531 sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
1532 };
1533 }
1534
1535 {
1158 name = "ansi_escapes___ansi_escapes_3.1.0.tgz"; 1536 name = "ansi_escapes___ansi_escapes_3.1.0.tgz";
1159 path = fetchurl { 1537 path = fetchurl {
1160 name = "ansi_escapes___ansi_escapes_3.1.0.tgz"; 1538 name = "ansi_escapes___ansi_escapes_3.1.0.tgz";
@@ -1227,15 +1605,6 @@
1227 } 1605 }
1228 1606
1229 { 1607 {
1230 name = "append_transform___append_transform_0.4.0.tgz";
1231 path = fetchurl {
1232 name = "append_transform___append_transform_0.4.0.tgz";
1233 url = "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz";
1234 sha1 = "d76ebf8ca94d276e247a36bad44a4b74ab611991";
1235 };
1236 }
1237
1238 {
1239 name = "aproba___aproba_1.2.0.tgz"; 1608 name = "aproba___aproba_1.2.0.tgz";
1240 path = fetchurl { 1609 path = fetchurl {
1241 name = "aproba___aproba_1.2.0.tgz"; 1610 name = "aproba___aproba_1.2.0.tgz";
@@ -1272,15 +1641,6 @@
1272 } 1641 }
1273 1642
1274 { 1643 {
1275 name = "arr_diff___arr_diff_2.0.0.tgz";
1276 path = fetchurl {
1277 name = "arr_diff___arr_diff_2.0.0.tgz";
1278 url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz";
1279 sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
1280 };
1281 }
1282
1283 {
1284 name = "arr_diff___arr_diff_4.0.0.tgz"; 1644 name = "arr_diff___arr_diff_4.0.0.tgz";
1285 path = fetchurl { 1645 path = fetchurl {
1286 name = "arr_diff___arr_diff_4.0.0.tgz"; 1646 name = "arr_diff___arr_diff_4.0.0.tgz";
@@ -1317,6 +1677,15 @@
1317 } 1677 }
1318 1678
1319 { 1679 {
1680 name = "array_filter___array_filter_1.0.0.tgz";
1681 path = fetchurl {
1682 name = "array_filter___array_filter_1.0.0.tgz";
1683 url = "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz";
1684 sha1 = "baf79e62e6ef4c2a4c0b831232daffec251f9d83";
1685 };
1686 }
1687
1688 {
1320 name = "array_flatten___array_flatten_1.1.1.tgz"; 1689 name = "array_flatten___array_flatten_1.1.1.tgz";
1321 path = fetchurl { 1690 path = fetchurl {
1322 name = "array_flatten___array_flatten_1.1.1.tgz"; 1691 name = "array_flatten___array_flatten_1.1.1.tgz";
@@ -1362,20 +1731,20 @@
1362 } 1731 }
1363 1732
1364 { 1733 {
1365 name = "array_unique___array_unique_0.2.1.tgz"; 1734 name = "array_unique___array_unique_0.3.2.tgz";
1366 path = fetchurl { 1735 path = fetchurl {
1367 name = "array_unique___array_unique_0.2.1.tgz"; 1736 name = "array_unique___array_unique_0.3.2.tgz";
1368 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz"; 1737 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz";
1369 sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; 1738 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
1370 }; 1739 };
1371 } 1740 }
1372 1741
1373 { 1742 {
1374 name = "array_unique___array_unique_0.3.2.tgz"; 1743 name = "array.prototype.find___array.prototype.find_2.1.0.tgz";
1375 path = fetchurl { 1744 path = fetchurl {
1376 name = "array_unique___array_unique_0.3.2.tgz"; 1745 name = "array.prototype.find___array.prototype.find_2.1.0.tgz";
1377 url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; 1746 url = "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.0.tgz";
1378 sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; 1747 sha1 = "630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7";
1379 }; 1748 };
1380 } 1749 }
1381 1750
@@ -1470,11 +1839,11 @@
1470 } 1839 }
1471 1840
1472 { 1841 {
1473 name = "async_each___async_each_1.0.1.tgz"; 1842 name = "async_each___async_each_1.0.3.tgz";
1474 path = fetchurl { 1843 path = fetchurl {
1475 name = "async_each___async_each_1.0.1.tgz"; 1844 name = "async_each___async_each_1.0.3.tgz";
1476 url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz"; 1845 url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz";
1477 sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d"; 1846 sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf";
1478 }; 1847 };
1479 } 1848 }
1480 1849
@@ -1524,11 +1893,11 @@
1524 } 1893 }
1525 1894
1526 { 1895 {
1527 name = "autoprefixer___autoprefixer_9.4.3.tgz"; 1896 name = "autoprefixer___autoprefixer_9.6.0.tgz";
1528 path = fetchurl { 1897 path = fetchurl {
1529 name = "autoprefixer___autoprefixer_9.4.3.tgz"; 1898 name = "autoprefixer___autoprefixer_9.6.0.tgz";
1530 url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.3.tgz"; 1899 url = "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.0.tgz";
1531 sha1 = "c97384a8fd80477b78049163a91bbc725d9c41d9"; 1900 sha1 = "0111c6bde2ad20c6f17995a33fad7cf6854b4c87";
1532 }; 1901 };
1533 } 1902 }
1534 1903
@@ -1551,11 +1920,11 @@
1551 } 1920 }
1552 1921
1553 { 1922 {
1554 name = "axios___axios_0.18.0.tgz"; 1923 name = "axios___axios_0.19.0.tgz";
1555 path = fetchurl { 1924 path = fetchurl {
1556 name = "axios___axios_0.18.0.tgz"; 1925 name = "axios___axios_0.19.0.tgz";
1557 url = "https://registry.yarnpkg.com/axios/-/axios-0.18.0.tgz"; 1926 url = "https://registry.yarnpkg.com/axios/-/axios-0.19.0.tgz";
1558 sha1 = "32d53e4851efdc0a11993b6cd000789d70c05102"; 1927 sha1 = "8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8";
1559 }; 1928 };
1560 } 1929 }
1561 1930
@@ -1569,33 +1938,6 @@
1569 } 1938 }
1570 1939
1571 { 1940 {
1572 name = "babel_code_frame___babel_code_frame_6.26.0.tgz";
1573 path = fetchurl {
1574 name = "babel_code_frame___babel_code_frame_6.26.0.tgz";
1575 url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
1576 sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
1577 };
1578 }
1579
1580 {
1581 name = "babel_core___babel_core_6.26.3.tgz";
1582 path = fetchurl {
1583 name = "babel_core___babel_core_6.26.3.tgz";
1584 url = "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz";
1585 sha1 = "b2e2f09e342d0f0c88e2f02e067794125e75c207";
1586 };
1587 }
1588
1589 {
1590 name = "babel_core___babel_core_7.0.0_bridge.0.tgz";
1591 path = fetchurl {
1592 name = "babel_core___babel_core_7.0.0_bridge.0.tgz";
1593 url = "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz";
1594 sha1 = "95a492ddd90f9b4e9a4a1da14eb335b87b634ece";
1595 };
1596 }
1597
1598 {
1599 name = "babel_eslint___babel_eslint_10.0.1.tgz"; 1941 name = "babel_eslint___babel_eslint_10.0.1.tgz";
1600 path = fetchurl { 1942 path = fetchurl {
1601 name = "babel_eslint___babel_eslint_10.0.1.tgz"; 1943 name = "babel_eslint___babel_eslint_10.0.1.tgz";
@@ -1605,74 +1947,65 @@
1605 } 1947 }
1606 1948
1607 { 1949 {
1608 name = "babel_generator___babel_generator_6.26.1.tgz"; 1950 name = "babel_jest___babel_jest_24.8.0.tgz";
1609 path = fetchurl {
1610 name = "babel_generator___babel_generator_6.26.1.tgz";
1611 url = "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz";
1612 sha1 = "1844408d3b8f0d35a404ea7ac180f087a601bd90";
1613 };
1614 }
1615
1616 {
1617 name = "babel_helpers___babel_helpers_6.24.1.tgz";
1618 path = fetchurl { 1951 path = fetchurl {
1619 name = "babel_helpers___babel_helpers_6.24.1.tgz"; 1952 name = "babel_jest___babel_jest_24.8.0.tgz";
1620 url = "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz"; 1953 url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.8.0.tgz";
1621 sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; 1954 sha1 = "5c15ff2b28e20b0f45df43fe6b7f2aae93dba589";
1622 }; 1955 };
1623 } 1956 }
1624 1957
1625 { 1958 {
1626 name = "babel_jest___babel_jest_23.6.0.tgz"; 1959 name = "babel_loader___babel_loader_8.0.5.tgz";
1627 path = fetchurl { 1960 path = fetchurl {
1628 name = "babel_jest___babel_jest_23.6.0.tgz"; 1961 name = "babel_loader___babel_loader_8.0.5.tgz";
1629 url = "https://registry.yarnpkg.com/babel-jest/-/babel-jest-23.6.0.tgz"; 1962 url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.5.tgz";
1630 sha1 = "a644232366557a2240a0c083da6b25786185a2f1"; 1963 sha1 = "225322d7509c2157655840bba52e46b6c2f2fe33";
1631 }; 1964 };
1632 } 1965 }
1633 1966
1634 { 1967 {
1635 name = "babel_loader___babel_loader_8.0.4.tgz"; 1968 name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz";
1636 path = fetchurl { 1969 path = fetchurl {
1637 name = "babel_loader___babel_loader_8.0.4.tgz"; 1970 name = "babel_plugin_emotion___babel_plugin_emotion_9.2.11.tgz";
1638 url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.4.tgz"; 1971 url = "https://registry.yarnpkg.com/babel-plugin-emotion/-/babel-plugin-emotion-9.2.11.tgz";
1639 sha1 = "7bbf20cbe4560629e2e41534147692d3fecbdce6"; 1972 sha1 = "319c005a9ee1d15bb447f59fe504c35fd5807728";
1640 }; 1973 };
1641 } 1974 }
1642 1975
1643 { 1976 {
1644 name = "babel_messages___babel_messages_6.23.0.tgz"; 1977 name = "babel_plugin_istanbul___babel_plugin_istanbul_5.1.1.tgz";
1645 path = fetchurl { 1978 path = fetchurl {
1646 name = "babel_messages___babel_messages_6.23.0.tgz"; 1979 name = "babel_plugin_istanbul___babel_plugin_istanbul_5.1.1.tgz";
1647 url = "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz"; 1980 url = "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz";
1648 sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; 1981 sha1 = "7981590f1956d75d67630ba46f0c22493588c893";
1649 }; 1982 };
1650 } 1983 }
1651 1984
1652 { 1985 {
1653 name = "babel_plugin_istanbul___babel_plugin_istanbul_4.1.6.tgz"; 1986 name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_24.6.0.tgz";
1654 path = fetchurl { 1987 path = fetchurl {
1655 name = "babel_plugin_istanbul___babel_plugin_istanbul_4.1.6.tgz"; 1988 name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_24.6.0.tgz";
1656 url = "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz"; 1989 url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz";
1657 sha1 = "36c59b2192efce81c5b378321b74175add1c9a45"; 1990 sha1 = "f7f7f7ad150ee96d7a5e8e2c5da8319579e78019";
1658 }; 1991 };
1659 } 1992 }
1660 1993
1661 { 1994 {
1662 name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_23.2.0.tgz"; 1995 name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz";
1663 path = fetchurl { 1996 path = fetchurl {
1664 name = "babel_plugin_jest_hoist___babel_plugin_jest_hoist_23.2.0.tgz"; 1997 name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz";
1665 url = "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-23.2.0.tgz"; 1998 url = "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz";
1666 sha1 = "e61fae05a1ca8801aadee57a6d66b8cefaf44167"; 1999 sha1 = "4f6844358a1340baed182adbeffa8df9967bc196";
1667 }; 2000 };
1668 } 2001 }
1669 2002
1670 { 2003 {
1671 name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz"; 2004 name = "babel_plugin_macros___babel_plugin_macros_2.5.1.tgz";
1672 path = fetchurl { 2005 path = fetchurl {
1673 name = "babel_plugin_lodash___babel_plugin_lodash_3.3.4.tgz"; 2006 name = "babel_plugin_macros___babel_plugin_macros_2.5.1.tgz";
1674 url = "https://registry.yarnpkg.com/babel-plugin-lodash/-/babel-plugin-lodash-3.3.4.tgz"; 2007 url = "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.5.1.tgz";
1675 sha1 = "4f6844358a1340baed182adbeffa8df9967bc196"; 2008 sha1 = "4a119ac2c2e19b458c259b9accd7ee34fd57ec6f";
1676 }; 2009 };
1677 } 2010 }
1678 2011
@@ -1695,47 +2028,38 @@
1695 } 2028 }
1696 2029
1697 { 2030 {
1698 name = "babel_plugin_react_intl___babel_plugin_react_intl_3.0.1.tgz"; 2031 name = "babel_plugin_react_intl___babel_plugin_react_intl_3.1.3.tgz";
1699 path = fetchurl {
1700 name = "babel_plugin_react_intl___babel_plugin_react_intl_3.0.1.tgz";
1701 url = "https://registry.yarnpkg.com/babel-plugin-react-intl/-/babel-plugin-react-intl-3.0.1.tgz";
1702 sha1 = "4abc7fff04a7bbbb7034aec0a675713f2e52181c";
1703 };
1704 }
1705
1706 {
1707 name = "babel_plugin_syntax_object_rest_spread___babel_plugin_syntax_object_rest_spread_6.13.0.tgz";
1708 path = fetchurl { 2032 path = fetchurl {
1709 name = "babel_plugin_syntax_object_rest_spread___babel_plugin_syntax_object_rest_spread_6.13.0.tgz"; 2033 name = "babel_plugin_react_intl___babel_plugin_react_intl_3.1.3.tgz";
1710 url = "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; 2034 url = "https://registry.yarnpkg.com/babel-plugin-react-intl/-/babel-plugin-react-intl-3.1.3.tgz";
1711 sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; 2035 sha1 = "2a28cd43cbba1ed092c7e3376bf8f02b0f72acb8";
1712 }; 2036 };
1713 } 2037 }
1714 2038
1715 { 2039 {
1716 name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.21.tgz"; 2040 name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz";
1717 path = fetchurl { 2041 path = fetchurl {
1718 name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.21.tgz"; 2042 name = "babel_plugin_syntax_jsx___babel_plugin_syntax_jsx_6.18.0.tgz";
1719 url = "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.21.tgz"; 2043 url = "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz";
1720 sha1 = "0087938f4348cb751b3e5055a6b38f3c61b5231b"; 2044 sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946";
1721 }; 2045 };
1722 } 2046 }
1723 2047
1724 { 2048 {
1725 name = "babel_preset_jest___babel_preset_jest_23.2.0.tgz"; 2049 name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz";
1726 path = fetchurl { 2050 path = fetchurl {
1727 name = "babel_preset_jest___babel_preset_jest_23.2.0.tgz"; 2051 name = "babel_plugin_transform_react_remove_prop_types___babel_plugin_transform_react_remove_prop_types_0.4.24.tgz";
1728 url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-23.2.0.tgz"; 2052 url = "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz";
1729 sha1 = "8ec7a03a138f001a1a8fb1e8113652bf1a55da46"; 2053 sha1 = "f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a";
1730 }; 2054 };
1731 } 2055 }
1732 2056
1733 { 2057 {
1734 name = "babel_register___babel_register_6.26.0.tgz"; 2058 name = "babel_preset_jest___babel_preset_jest_24.6.0.tgz";
1735 path = fetchurl { 2059 path = fetchurl {
1736 name = "babel_register___babel_register_6.26.0.tgz"; 2060 name = "babel_preset_jest___babel_preset_jest_24.6.0.tgz";
1737 url = "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz"; 2061 url = "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz";
1738 sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; 2062 sha1 = "66f06136eefce87797539c0d63f1769cc3915984";
1739 }; 2063 };
1740 } 2064 }
1741 2065
@@ -1749,42 +2073,6 @@
1749 } 2073 }
1750 2074
1751 { 2075 {
1752 name = "babel_template___babel_template_6.26.0.tgz";
1753 path = fetchurl {
1754 name = "babel_template___babel_template_6.26.0.tgz";
1755 url = "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz";
1756 sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
1757 };
1758 }
1759
1760 {
1761 name = "babel_traverse___babel_traverse_6.26.0.tgz";
1762 path = fetchurl {
1763 name = "babel_traverse___babel_traverse_6.26.0.tgz";
1764 url = "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz";
1765 sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
1766 };
1767 }
1768
1769 {
1770 name = "babel_types___babel_types_6.26.0.tgz";
1771 path = fetchurl {
1772 name = "babel_types___babel_types_6.26.0.tgz";
1773 url = "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz";
1774 sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
1775 };
1776 }
1777
1778 {
1779 name = "babylon___babylon_6.18.0.tgz";
1780 path = fetchurl {
1781 name = "babylon___babylon_6.18.0.tgz";
1782 url = "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz";
1783 sha1 = "af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3";
1784 };
1785 }
1786
1787 {
1788 name = "backoff___backoff_2.5.0.tgz"; 2076 name = "backoff___backoff_2.5.0.tgz";
1789 path = fetchurl { 2077 path = fetchurl {
1790 name = "backoff___backoff_2.5.0.tgz"; 2078 name = "backoff___backoff_2.5.0.tgz";
@@ -1884,6 +2172,15 @@
1884 } 2172 }
1885 2173
1886 { 2174 {
2175 name = "blurhash___blurhash_1.0.0.tgz";
2176 path = fetchurl {
2177 name = "blurhash___blurhash_1.0.0.tgz";
2178 url = "https://registry.yarnpkg.com/blurhash/-/blurhash-1.0.0.tgz";
2179 sha1 = "9087bc5cc4d482f1305059d7410df4133adcab2e";
2180 };
2181 }
2182
2183 {
1887 name = "bn.js___bn.js_4.11.8.tgz"; 2184 name = "bn.js___bn.js_4.11.8.tgz";
1888 path = fetchurl { 2185 path = fetchurl {
1889 name = "bn.js___bn.js_4.11.8.tgz"; 2186 name = "bn.js___bn.js_4.11.8.tgz";
@@ -1893,11 +2190,11 @@
1893 } 2190 }
1894 2191
1895 { 2192 {
1896 name = "body_parser___body_parser_1.18.3.tgz"; 2193 name = "body_parser___body_parser_1.19.0.tgz";
1897 path = fetchurl { 2194 path = fetchurl {
1898 name = "body_parser___body_parser_1.18.3.tgz"; 2195 name = "body_parser___body_parser_1.19.0.tgz";
1899 url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.3.tgz"; 2196 url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz";
1900 sha1 = "5b292198ffdd553b3a0f20ded0592b956955c8b4"; 2197 sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a";
1901 }; 2198 };
1902 } 2199 }
1903 2200
@@ -1929,15 +2226,6 @@
1929 } 2226 }
1930 2227
1931 { 2228 {
1932 name = "braces___braces_1.8.5.tgz";
1933 path = fetchurl {
1934 name = "braces___braces_1.8.5.tgz";
1935 url = "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz";
1936 sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
1937 };
1938 }
1939
1940 {
1941 name = "braces___braces_2.3.2.tgz"; 2229 name = "braces___braces_2.3.2.tgz";
1942 path = fetchurl { 2230 path = fetchurl {
1943 name = "braces___braces_2.3.2.tgz"; 2231 name = "braces___braces_2.3.2.tgz";
@@ -2037,11 +2325,11 @@
2037 } 2325 }
2038 2326
2039 { 2327 {
2040 name = "browserslist___browserslist_4.3.7.tgz"; 2328 name = "browserslist___browserslist_4.6.2.tgz";
2041 path = fetchurl { 2329 path = fetchurl {
2042 name = "browserslist___browserslist_4.3.7.tgz"; 2330 name = "browserslist___browserslist_4.6.2.tgz";
2043 url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.3.7.tgz"; 2331 url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.2.tgz";
2044 sha1 = "f1de479a6466ea47a0a26dcc725e7504817e624a"; 2332 sha1 = "574c665950915c2ac73a4594b8537a9eba26203f";
2045 }; 2333 };
2046 } 2334 }
2047 2335
@@ -2127,6 +2415,15 @@
2127 } 2415 }
2128 2416
2129 { 2417 {
2418 name = "bytes___bytes_3.1.0.tgz";
2419 path = fetchurl {
2420 name = "bytes___bytes_3.1.0.tgz";
2421 url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz";
2422 sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6";
2423 };
2424 }
2425
2426 {
2130 name = "cacache___cacache_11.3.2.tgz"; 2427 name = "cacache___cacache_11.3.2.tgz";
2131 path = fetchurl { 2428 path = fetchurl {
2132 name = "cacache___cacache_11.3.2.tgz"; 2429 name = "cacache___cacache_11.3.2.tgz";
@@ -2190,11 +2487,11 @@
2190 } 2487 }
2191 2488
2192 { 2489 {
2193 name = "camelcase___camelcase_4.1.0.tgz"; 2490 name = "callsites___callsites_3.0.0.tgz";
2194 path = fetchurl { 2491 path = fetchurl {
2195 name = "camelcase___camelcase_4.1.0.tgz"; 2492 name = "callsites___callsites_3.0.0.tgz";
2196 url = "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz"; 2493 url = "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz";
2197 sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; 2494 sha1 = "fb7eb569b72ad7a45812f93fd9430a3e410b3dd3";
2198 }; 2495 };
2199 } 2496 }
2200 2497
@@ -2208,6 +2505,15 @@
2208 } 2505 }
2209 2506
2210 { 2507 {
2508 name = "camelcase___camelcase_5.2.0.tgz";
2509 path = fetchurl {
2510 name = "camelcase___camelcase_5.2.0.tgz";
2511 url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.2.0.tgz";
2512 sha1 = "e7522abda5ed94cc0489e1b8466610e88404cf45";
2513 };
2514 }
2515
2516 {
2211 name = "caniuse_api___caniuse_api_3.0.0.tgz"; 2517 name = "caniuse_api___caniuse_api_3.0.0.tgz";
2212 path = fetchurl { 2518 path = fetchurl {
2213 name = "caniuse_api___caniuse_api_3.0.0.tgz"; 2519 name = "caniuse_api___caniuse_api_3.0.0.tgz";
@@ -2217,11 +2523,11 @@
2217 } 2523 }
2218 2524
2219 { 2525 {
2220 name = "caniuse_lite___caniuse_lite_1.0.30000926.tgz"; 2526 name = "caniuse_lite___caniuse_lite_1.0.30000974.tgz";
2221 path = fetchurl { 2527 path = fetchurl {
2222 name = "caniuse_lite___caniuse_lite_1.0.30000926.tgz"; 2528 name = "caniuse_lite___caniuse_lite_1.0.30000974.tgz";
2223 url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000926.tgz"; 2529 url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000974.tgz";
2224 sha1 = "4361a99d818ca6e521dbe89a732de62a194a789c"; 2530 sha1 = "b7afe14ee004e97ce6dc73e3f878290a12928ad8";
2225 }; 2531 };
2226 } 2532 }
2227 2533
@@ -2253,11 +2559,11 @@
2253 } 2559 }
2254 2560
2255 { 2561 {
2256 name = "chalk___chalk_2.4.1.tgz"; 2562 name = "chalk___chalk_2.4.2.tgz";
2257 path = fetchurl { 2563 path = fetchurl {
2258 name = "chalk___chalk_2.4.1.tgz"; 2564 name = "chalk___chalk_2.4.2.tgz";
2259 url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz"; 2565 url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz";
2260 sha1 = "18c49ab16a037b6eb0152cc83e3471338215b66e"; 2566 sha1 = "cd42541677a54333cf541a49108c1432b44c9424";
2261 }; 2567 };
2262 } 2568 }
2263 2569
@@ -2289,11 +2595,11 @@
2289 } 2595 }
2290 2596
2291 { 2597 {
2292 name = "chokidar___chokidar_2.0.4.tgz"; 2598 name = "chokidar___chokidar_2.1.6.tgz";
2293 path = fetchurl { 2599 path = fetchurl {
2294 name = "chokidar___chokidar_2.0.4.tgz"; 2600 name = "chokidar___chokidar_2.1.6.tgz";
2295 url = "https://registry.yarnpkg.com/chokidar/-/chokidar-2.0.4.tgz"; 2601 url = "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz";
2296 sha1 = "356ff4e2b0e8e43e322d18a372460bbcf3accd26"; 2602 sha1 = "b6cad653a929e244ce8a834244164d241fa954c5";
2297 }; 2603 };
2298 } 2604 }
2299 2605
@@ -2316,11 +2622,11 @@
2316 } 2622 }
2317 2623
2318 { 2624 {
2319 name = "ci_info___ci_info_1.6.0.tgz"; 2625 name = "ci_info___ci_info_2.0.0.tgz";
2320 path = fetchurl { 2626 path = fetchurl {
2321 name = "ci_info___ci_info_1.6.0.tgz"; 2627 name = "ci_info___ci_info_2.0.0.tgz";
2322 url = "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz"; 2628 url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz";
2323 sha1 = "2ca20dbb9ceb32d4524a683303313f0304b1e497"; 2629 sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46";
2324 }; 2630 };
2325 } 2631 }
2326 2632
@@ -2361,6 +2667,15 @@
2361 } 2667 }
2362 2668
2363 { 2669 {
2670 name = "cli_cursor___cli_cursor_1.0.2.tgz";
2671 path = fetchurl {
2672 name = "cli_cursor___cli_cursor_1.0.2.tgz";
2673 url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz";
2674 sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987";
2675 };
2676 }
2677
2678 {
2364 name = "cli_cursor___cli_cursor_2.1.0.tgz"; 2679 name = "cli_cursor___cli_cursor_2.1.0.tgz";
2365 path = fetchurl { 2680 path = fetchurl {
2366 name = "cli_cursor___cli_cursor_2.1.0.tgz"; 2681 name = "cli_cursor___cli_cursor_2.1.0.tgz";
@@ -2379,15 +2694,6 @@
2379 } 2694 }
2380 2695
2381 { 2696 {
2382 name = "cliui___cliui_3.2.0.tgz";
2383 path = fetchurl {
2384 name = "cliui___cliui_3.2.0.tgz";
2385 url = "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz";
2386 sha1 = "120601537a916d29940f934da3b48d585a39213d";
2387 };
2388 }
2389
2390 {
2391 name = "cliui___cliui_4.1.0.tgz"; 2697 name = "cliui___cliui_4.1.0.tgz";
2392 path = fetchurl { 2698 path = fetchurl {
2393 name = "cliui___cliui_4.1.0.tgz"; 2699 name = "cliui___cliui_4.1.0.tgz";
@@ -2505,11 +2811,11 @@
2505 } 2811 }
2506 2812
2507 { 2813 {
2508 name = "commander___commander_2.19.0.tgz"; 2814 name = "commander___commander_2.20.0.tgz";
2509 path = fetchurl { 2815 path = fetchurl {
2510 name = "commander___commander_2.19.0.tgz"; 2816 name = "commander___commander_2.20.0.tgz";
2511 url = "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz"; 2817 url = "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz";
2512 sha1 = "f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"; 2818 sha1 = "d58bb2b5c1ee8f87b0d340027e9e94e222c5a422";
2513 }; 2819 };
2514 } 2820 }
2515 2821
@@ -2541,11 +2847,11 @@
2541 } 2847 }
2542 2848
2543 { 2849 {
2544 name = "compressible___compressible_2.0.15.tgz"; 2850 name = "compressible___compressible_2.0.17.tgz";
2545 path = fetchurl { 2851 path = fetchurl {
2546 name = "compressible___compressible_2.0.15.tgz"; 2852 name = "compressible___compressible_2.0.17.tgz";
2547 url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.15.tgz"; 2853 url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz";
2548 sha1 = "857a9ab0a7e5a07d8d837ed43fe2defff64fe212"; 2854 sha1 = "6e8c108a16ad58384a977f3a482ca20bff2f38c1";
2549 }; 2855 };
2550 } 2856 }
2551 2857
@@ -2559,11 +2865,11 @@
2559 } 2865 }
2560 2866
2561 { 2867 {
2562 name = "compression___compression_1.7.3.tgz"; 2868 name = "compression___compression_1.7.4.tgz";
2563 path = fetchurl { 2869 path = fetchurl {
2564 name = "compression___compression_1.7.3.tgz"; 2870 name = "compression___compression_1.7.4.tgz";
2565 url = "https://registry.yarnpkg.com/compression/-/compression-1.7.3.tgz"; 2871 url = "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz";
2566 sha1 = "27e0e176aaf260f7f2c2813c3e440adb9f1993db"; 2872 sha1 = "95523eff170ca57c29a0ca41e6fe131f41e5bb8f";
2567 }; 2873 };
2568 } 2874 }
2569 2875
@@ -2586,11 +2892,11 @@
2586 } 2892 }
2587 2893
2588 { 2894 {
2589 name = "connect_history_api_fallback___connect_history_api_fallback_1.5.0.tgz"; 2895 name = "connect_history_api_fallback___connect_history_api_fallback_1.6.0.tgz";
2590 path = fetchurl { 2896 path = fetchurl {
2591 name = "connect_history_api_fallback___connect_history_api_fallback_1.5.0.tgz"; 2897 name = "connect_history_api_fallback___connect_history_api_fallback_1.6.0.tgz";
2592 url = "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz"; 2898 url = "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz";
2593 sha1 = "b06873934bc5e344fef611a196a6faae0aee015a"; 2899 sha1 = "8b32089359308d111115d81cad3fceab888f97bc";
2594 }; 2900 };
2595 } 2901 }
2596 2902
@@ -2631,11 +2937,11 @@
2631 } 2937 }
2632 2938
2633 { 2939 {
2634 name = "content_disposition___content_disposition_0.5.2.tgz"; 2940 name = "content_disposition___content_disposition_0.5.3.tgz";
2635 path = fetchurl { 2941 path = fetchurl {
2636 name = "content_disposition___content_disposition_0.5.2.tgz"; 2942 name = "content_disposition___content_disposition_0.5.3.tgz";
2637 url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz"; 2943 url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz";
2638 sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 2944 sha1 = "e130caf7e7279087c5616c2007d0485698984fbd";
2639 }; 2945 };
2640 } 2946 }
2641 2947
@@ -2667,11 +2973,11 @@
2667 } 2973 }
2668 2974
2669 { 2975 {
2670 name = "cookie___cookie_0.3.1.tgz"; 2976 name = "cookie___cookie_0.4.0.tgz";
2671 path = fetchurl { 2977 path = fetchurl {
2672 name = "cookie___cookie_0.3.1.tgz"; 2978 name = "cookie___cookie_0.4.0.tgz";
2673 url = "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz"; 2979 url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz";
2674 sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; 2980 sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba";
2675 }; 2981 };
2676 } 2982 }
2677 2983
@@ -2694,6 +3000,24 @@
2694 } 3000 }
2695 3001
2696 { 3002 {
3003 name = "core_js_compat___core_js_compat_3.1.3.tgz";
3004 path = fetchurl {
3005 name = "core_js_compat___core_js_compat_3.1.3.tgz";
3006 url = "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.3.tgz";
3007 sha1 = "0cc3ba4c7f62928c2837e1cffbe8dc78b4f1ae14";
3008 };
3009 }
3010
3011 {
3012 name = "core_js_pure___core_js_pure_3.1.3.tgz";
3013 path = fetchurl {
3014 name = "core_js_pure___core_js_pure_3.1.3.tgz";
3015 url = "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.3.tgz";
3016 sha1 = "4c90752d5b9471f641514f3728f51c1e0783d0b5";
3017 };
3018 }
3019
3020 {
2697 name = "core_js___core_js_1.2.7.tgz"; 3021 name = "core_js___core_js_1.2.7.tgz";
2698 path = fetchurl { 3022 path = fetchurl {
2699 name = "core_js___core_js_1.2.7.tgz"; 3023 name = "core_js___core_js_1.2.7.tgz";
@@ -2739,6 +3063,15 @@
2739 } 3063 }
2740 3064
2741 { 3065 {
3066 name = "cosmiconfig___cosmiconfig_5.2.1.tgz";
3067 path = fetchurl {
3068 name = "cosmiconfig___cosmiconfig_5.2.1.tgz";
3069 url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz";
3070 sha1 = "040f726809c591e77a17c0a3626ca45b4f168b1a";
3071 };
3072 }
3073
3074 {
2742 name = "create_ecdh___create_ecdh_4.0.3.tgz"; 3075 name = "create_ecdh___create_ecdh_4.0.3.tgz";
2743 path = fetchurl { 3076 path = fetchurl {
2744 name = "create_ecdh___create_ecdh_4.0.3.tgz"; 3077 name = "create_ecdh___create_ecdh_4.0.3.tgz";
@@ -2748,11 +3081,11 @@
2748 } 3081 }
2749 3082
2750 { 3083 {
2751 name = "create_emotion___create_emotion_10.0.5.tgz"; 3084 name = "create_emotion___create_emotion_9.2.12.tgz";
2752 path = fetchurl { 3085 path = fetchurl {
2753 name = "create_emotion___create_emotion_10.0.5.tgz"; 3086 name = "create_emotion___create_emotion_9.2.12.tgz";
2754 url = "https://registry.yarnpkg.com/create-emotion/-/create-emotion-10.0.5.tgz"; 3087 url = "https://registry.yarnpkg.com/create-emotion/-/create-emotion-9.2.12.tgz";
2755 sha1 = "22487f19b59a7ed10144f808289eadffebcfab06"; 3088 sha1 = "0fc8e7f92c4f8bb924b0fef6781f66b1d07cb26f";
2756 }; 3089 };
2757 } 3090 }
2758 3091
@@ -2784,15 +3117,6 @@
2784 } 3117 }
2785 3118
2786 { 3119 {
2787 name = "cross_spawn___cross_spawn_5.1.0.tgz";
2788 path = fetchurl {
2789 name = "cross_spawn___cross_spawn_5.1.0.tgz";
2790 url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz";
2791 sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449";
2792 };
2793 }
2794
2795 {
2796 name = "cross_spawn___cross_spawn_6.0.5.tgz"; 3120 name = "cross_spawn___cross_spawn_6.0.5.tgz";
2797 path = fetchurl { 3121 path = fetchurl {
2798 name = "cross_spawn___cross_spawn_6.0.5.tgz"; 3122 name = "cross_spawn___cross_spawn_6.0.5.tgz";
@@ -2883,11 +3207,11 @@
2883 } 3207 }
2884 3208
2885 { 3209 {
2886 name = "css_loader___css_loader_2.1.0.tgz"; 3210 name = "css_loader___css_loader_2.1.1.tgz";
2887 path = fetchurl { 3211 path = fetchurl {
2888 name = "css_loader___css_loader_2.1.0.tgz"; 3212 name = "css_loader___css_loader_2.1.1.tgz";
2889 url = "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.0.tgz"; 3213 url = "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz";
2890 sha1 = "42952ac22bca5d076978638e9813abce49b8f0cc"; 3214 sha1 = "d8254f72e412bb2238bb44dd674ffbef497333ea";
2891 }; 3215 };
2892 } 3216 }
2893 3217
@@ -2919,15 +3243,6 @@
2919 } 3243 }
2920 3244
2921 { 3245 {
2922 name = "css_selector_tokenizer___css_selector_tokenizer_0.7.1.tgz";
2923 path = fetchurl {
2924 name = "css_selector_tokenizer___css_selector_tokenizer_0.7.1.tgz";
2925 url = "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz";
2926 sha1 = "a177271a8bca5019172f4f891fc6eed9cbf68d5d";
2927 };
2928 }
2929
2930 {
2931 name = "css_system_font_keywords___css_system_font_keywords_1.0.0.tgz"; 3246 name = "css_system_font_keywords___css_system_font_keywords_1.0.0.tgz";
2932 path = fetchurl { 3247 path = fetchurl {
2933 name = "css_system_font_keywords___css_system_font_keywords_1.0.0.tgz"; 3248 name = "css_system_font_keywords___css_system_font_keywords_1.0.0.tgz";
@@ -2982,29 +3297,29 @@
2982 } 3297 }
2983 3298
2984 { 3299 {
2985 name = "cssesc___cssesc_0.1.0.tgz"; 3300 name = "cssesc___cssesc_2.0.0.tgz";
2986 path = fetchurl { 3301 path = fetchurl {
2987 name = "cssesc___cssesc_0.1.0.tgz"; 3302 name = "cssesc___cssesc_2.0.0.tgz";
2988 url = "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz"; 3303 url = "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz";
2989 sha1 = "c814903e45623371a0477b40109aaafbeeaddbb4"; 3304 sha1 = "3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703";
2990 }; 3305 };
2991 } 3306 }
2992 3307
2993 { 3308 {
2994 name = "cssesc___cssesc_2.0.0.tgz"; 3309 name = "cssesc___cssesc_3.0.0.tgz";
2995 path = fetchurl { 3310 path = fetchurl {
2996 name = "cssesc___cssesc_2.0.0.tgz"; 3311 name = "cssesc___cssesc_3.0.0.tgz";
2997 url = "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz"; 3312 url = "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz";
2998 sha1 = "3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"; 3313 sha1 = "37741919903b868565e1c09ea747445cd18983ee";
2999 }; 3314 };
3000 } 3315 }
3001 3316
3002 { 3317 {
3003 name = "cssnano_preset_default___cssnano_preset_default_4.0.6.tgz"; 3318 name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz";
3004 path = fetchurl { 3319 path = fetchurl {
3005 name = "cssnano_preset_default___cssnano_preset_default_4.0.6.tgz"; 3320 name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz";
3006 url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.6.tgz"; 3321 url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz";
3007 sha1 = "92379e2a6db4a91c0ea727f5f556eeac693eab6a"; 3322 sha1 = "51ec662ccfca0f88b396dcd9679cdb931be17f76";
3008 }; 3323 };
3009 } 3324 }
3010 3325
@@ -3045,11 +3360,11 @@
3045 } 3360 }
3046 3361
3047 { 3362 {
3048 name = "cssnano___cssnano_4.1.8.tgz"; 3363 name = "cssnano___cssnano_4.1.10.tgz";
3049 path = fetchurl { 3364 path = fetchurl {
3050 name = "cssnano___cssnano_4.1.8.tgz"; 3365 name = "cssnano___cssnano_4.1.10.tgz";
3051 url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.8.tgz"; 3366 url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz";
3052 sha1 = "8014989679d5fd42491e4499a521dbfb85c95fd1"; 3367 sha1 = "0ac41f0b13d13d465487e111b778d42da631b8b2";
3053 }; 3368 };
3054 } 3369 }
3055 3370
@@ -3090,6 +3405,15 @@
3090 } 3405 }
3091 3406
3092 { 3407 {
3408 name = "csstype___csstype_2.6.5.tgz";
3409 path = fetchurl {
3410 name = "csstype___csstype_2.6.5.tgz";
3411 url = "https://registry.yarnpkg.com/csstype/-/csstype-2.6.5.tgz";
3412 sha1 = "1cd1dff742ebf4d7c991470ae71e12bb6751e034";
3413 };
3414 }
3415
3416 {
3093 name = "cyclist___cyclist_0.2.2.tgz"; 3417 name = "cyclist___cyclist_0.2.2.tgz";
3094 path = fetchurl { 3418 path = fetchurl {
3095 name = "cyclist___cyclist_0.2.2.tgz"; 3419 name = "cyclist___cyclist_0.2.2.tgz";
@@ -3189,15 +3513,6 @@
3189 } 3513 }
3190 3514
3191 { 3515 {
3192 name = "decamelize___decamelize_2.0.0.tgz";
3193 path = fetchurl {
3194 name = "decamelize___decamelize_2.0.0.tgz";
3195 url = "https://registry.yarnpkg.com/decamelize/-/decamelize-2.0.0.tgz";
3196 sha1 = "656d7bbc8094c4c788ea53c5840908c9c7d063c7";
3197 };
3198 }
3199
3200 {
3201 name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 3516 name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
3202 path = fetchurl { 3517 path = fetchurl {
3203 name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; 3518 name = "decode_uri_component___decode_uri_component_0.2.0.tgz";
@@ -3243,20 +3558,11 @@
3243 } 3558 }
3244 3559
3245 { 3560 {
3246 name = "default_gateway___default_gateway_2.7.2.tgz"; 3561 name = "default_gateway___default_gateway_4.2.0.tgz";
3247 path = fetchurl { 3562 path = fetchurl {
3248 name = "default_gateway___default_gateway_2.7.2.tgz"; 3563 name = "default_gateway___default_gateway_4.2.0.tgz";
3249 url = "https://registry.yarnpkg.com/default-gateway/-/default-gateway-2.7.2.tgz"; 3564 url = "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz";
3250 sha1 = "b7ef339e5e024b045467af403d50348db4642d0f"; 3565 sha1 = "167104c7500c2115f6dd69b0a536bb8ed720552b";
3251 };
3252 }
3253
3254 {
3255 name = "default_require_extensions___default_require_extensions_1.0.0.tgz";
3256 path = fetchurl {
3257 name = "default_require_extensions___default_require_extensions_1.0.0.tgz";
3258 url = "https://registry.yarnpkg.com/default-require-extensions/-/default-require-extensions-1.0.0.tgz";
3259 sha1 = "f37ea15d3e13ffd9b437d33e1a75b5fb97874cb8";
3260 }; 3566 };
3261 } 3567 }
3262 3568
@@ -3297,11 +3603,11 @@
3297 } 3603 }
3298 3604
3299 { 3605 {
3300 name = "del___del_3.0.0.tgz"; 3606 name = "del___del_4.1.1.tgz";
3301 path = fetchurl { 3607 path = fetchurl {
3302 name = "del___del_3.0.0.tgz"; 3608 name = "del___del_4.1.1.tgz";
3303 url = "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz"; 3609 url = "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz";
3304 sha1 = "53ecf699ffcbcb39637691ab13baf160819766e5"; 3610 sha1 = "9e8f117222ea44a31ff3a156c049b99052a9f0b4";
3305 }; 3611 };
3306 } 3612 }
3307 3613
@@ -3351,11 +3657,11 @@
3351 } 3657 }
3352 3658
3353 { 3659 {
3354 name = "detect_indent___detect_indent_4.0.0.tgz"; 3660 name = "detect_file___detect_file_1.0.0.tgz";
3355 path = fetchurl { 3661 path = fetchurl {
3356 name = "detect_indent___detect_indent_4.0.0.tgz"; 3662 name = "detect_file___detect_file_1.0.0.tgz";
3357 url = "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz"; 3663 url = "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz";
3358 sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; 3664 sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
3359 }; 3665 };
3360 } 3666 }
3361 3667
@@ -3396,11 +3702,11 @@
3396 } 3702 }
3397 3703
3398 { 3704 {
3399 name = "diff___diff_3.5.0.tgz"; 3705 name = "diff_sequences___diff_sequences_24.3.0.tgz";
3400 path = fetchurl { 3706 path = fetchurl {
3401 name = "diff___diff_3.5.0.tgz"; 3707 name = "diff_sequences___diff_sequences_24.3.0.tgz";
3402 url = "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz"; 3708 url = "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.3.0.tgz";
3403 sha1 = "800c0dd1e0a8bfbc95835c202ad220fe317e5a12"; 3709 sha1 = "0f20e8a1df1abddaf4d9c226680952e64118b975";
3404 }; 3710 };
3405 } 3711 }
3406 3712
@@ -3558,11 +3864,11 @@
3558 } 3864 }
3559 3865
3560 { 3866 {
3561 name = "dotenv___dotenv_6.2.0.tgz"; 3867 name = "dotenv___dotenv_8.0.0.tgz";
3562 path = fetchurl { 3868 path = fetchurl {
3563 name = "dotenv___dotenv_6.2.0.tgz"; 3869 name = "dotenv___dotenv_8.0.0.tgz";
3564 url = "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz"; 3870 url = "https://registry.yarnpkg.com/dotenv/-/dotenv-8.0.0.tgz";
3565 sha1 = "941c0410535d942c8becf28d3f357dbd9d476064"; 3871 sha1 = "ed310c165b4e8a97bb745b0a9d99c31bda566440";
3566 }; 3872 };
3567 } 3873 }
3568 3874
@@ -3621,11 +3927,11 @@
3621 } 3927 }
3622 3928
3623 { 3929 {
3624 name = "electron_to_chromium___electron_to_chromium_1.3.96.tgz"; 3930 name = "electron_to_chromium___electron_to_chromium_1.3.163.tgz";
3625 path = fetchurl { 3931 path = fetchurl {
3626 name = "electron_to_chromium___electron_to_chromium_1.3.96.tgz"; 3932 name = "electron_to_chromium___electron_to_chromium_1.3.163.tgz";
3627 url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.96.tgz"; 3933 url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.163.tgz";
3628 sha1 = "25770ec99b8b07706dedf3a5f43fa50cb54c4f9a"; 3934 sha1 = "7fc3d637f5d8fa4ca4a052cad0de7675bd98b911";
3629 }; 3935 };
3630 } 3936 }
3631 3937
@@ -3648,11 +3954,11 @@
3648 } 3954 }
3649 3955
3650 { 3956 {
3651 name = "emoji_regex___emoji_regex_6.5.1.tgz"; 3957 name = "emoji_regex___emoji_regex_7.0.3.tgz";
3652 path = fetchurl { 3958 path = fetchurl {
3653 name = "emoji_regex___emoji_regex_6.5.1.tgz"; 3959 name = "emoji_regex___emoji_regex_7.0.3.tgz";
3654 url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz"; 3960 url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz";
3655 sha1 = "9baea929b155565c11ea41c6626eaa65cef992c2"; 3961 sha1 = "933a04052860c85e83c122479c4748a8e4c72156";
3656 }; 3962 };
3657 } 3963 }
3658 3964
@@ -3666,6 +3972,15 @@
3666 } 3972 }
3667 3973
3668 { 3974 {
3975 name = "emotion___emotion_9.2.12.tgz";
3976 path = fetchurl {
3977 name = "emotion___emotion_9.2.12.tgz";
3978 url = "https://registry.yarnpkg.com/emotion/-/emotion-9.2.12.tgz";
3979 sha1 = "53925aaa005614e65c6e43db8243c843574d1ea9";
3980 };
3981 }
3982
3983 {
3669 name = "encodeurl___encodeurl_1.0.2.tgz"; 3984 name = "encodeurl___encodeurl_1.0.2.tgz";
3670 path = fetchurl { 3985 path = fetchurl {
3671 name = "encodeurl___encodeurl_1.0.2.tgz"; 3986 name = "encodeurl___encodeurl_1.0.2.tgz";
@@ -3711,29 +4026,29 @@
3711 } 4026 }
3712 4027
3713 { 4028 {
3714 name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.7.1.tgz"; 4029 name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.14.0.tgz";
3715 path = fetchurl { 4030 path = fetchurl {
3716 name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.7.1.tgz"; 4031 name = "enzyme_adapter_react_16___enzyme_adapter_react_16_1.14.0.tgz";
3717 url = "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.7.1.tgz"; 4032 url = "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.14.0.tgz";
3718 sha1 = "c37c4cb0fd75e88a063154a7a88096474914496a"; 4033 sha1 = "204722b769172bcf096cb250d33e6795c1f1858f";
3719 }; 4034 };
3720 } 4035 }
3721 4036
3722 { 4037 {
3723 name = "enzyme_adapter_utils___enzyme_adapter_utils_1.9.0.tgz"; 4038 name = "enzyme_adapter_utils___enzyme_adapter_utils_1.12.0.tgz";
3724 path = fetchurl { 4039 path = fetchurl {
3725 name = "enzyme_adapter_utils___enzyme_adapter_utils_1.9.0.tgz"; 4040 name = "enzyme_adapter_utils___enzyme_adapter_utils_1.12.0.tgz";
3726 url = "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.9.0.tgz"; 4041 url = "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.0.tgz";
3727 sha1 = "3997c20f3387fdcd932b155b3740829ea10aa86c"; 4042 sha1 = "96e3730d76b872f593e54ce1c51fa3a451422d93";
3728 }; 4043 };
3729 } 4044 }
3730 4045
3731 { 4046 {
3732 name = "enzyme___enzyme_3.8.0.tgz"; 4047 name = "enzyme___enzyme_3.10.0.tgz";
3733 path = fetchurl { 4048 path = fetchurl {
3734 name = "enzyme___enzyme_3.8.0.tgz"; 4049 name = "enzyme___enzyme_3.10.0.tgz";
3735 url = "https://registry.yarnpkg.com/enzyme/-/enzyme-3.8.0.tgz"; 4050 url = "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz";
3736 sha1 = "646d2d5d0798cb98fdec39afcee8a53237b47ad5"; 4051 sha1 = "7218e347c4a7746e133f8e964aada4a3523452f6";
3737 }; 4052 };
3738 } 4053 }
3739 4054
@@ -3765,6 +4080,15 @@
3765 } 4080 }
3766 4081
3767 { 4082 {
4083 name = "es_abstract___es_abstract_1.13.0.tgz";
4084 path = fetchurl {
4085 name = "es_abstract___es_abstract_1.13.0.tgz";
4086 url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz";
4087 sha1 = "ac86145fdd5099d8dd49558ccba2eaf9b88e24e9";
4088 };
4089 }
4090
4091 {
3768 name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; 4092 name = "es_to_primitive___es_to_primitive_1.2.0.tgz";
3769 path = fetchurl { 4093 path = fetchurl {
3770 name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; 4094 name = "es_to_primitive___es_to_primitive_1.2.0.tgz";
@@ -3774,6 +4098,15 @@
3774 } 4098 }
3775 4099
3776 { 4100 {
4101 name = "es5_ext___es5_ext_0.10.50.tgz";
4102 path = fetchurl {
4103 name = "es5_ext___es5_ext_0.10.50.tgz";
4104 url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.50.tgz";
4105 sha1 = "6d0e23a0abdb27018e5ac4fd09b412bc5517a778";
4106 };
4107 }
4108
4109 {
3777 name = "es5_ext___es5_ext_0.10.46.tgz"; 4110 name = "es5_ext___es5_ext_0.10.46.tgz";
3778 path = fetchurl { 4111 path = fetchurl {
3779 name = "es5_ext___es5_ext_0.10.46.tgz"; 4112 name = "es5_ext___es5_ext_0.10.46.tgz";
@@ -3792,6 +4125,24 @@
3792 } 4125 }
3793 4126
3794 { 4127 {
4128 name = "es6_map___es6_map_0.1.5.tgz";
4129 path = fetchurl {
4130 name = "es6_map___es6_map_0.1.5.tgz";
4131 url = "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz";
4132 sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0";
4133 };
4134 }
4135
4136 {
4137 name = "es6_set___es6_set_0.1.5.tgz";
4138 path = fetchurl {
4139 name = "es6_set___es6_set_0.1.5.tgz";
4140 url = "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz";
4141 sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1";
4142 };
4143 }
4144
4145 {
3795 name = "es6_symbol___es6_symbol_3.1.1.tgz"; 4146 name = "es6_symbol___es6_symbol_3.1.1.tgz";
3796 path = fetchurl { 4147 path = fetchurl {
3797 name = "es6_symbol___es6_symbol_3.1.1.tgz"; 4148 name = "es6_symbol___es6_symbol_3.1.1.tgz";
@@ -3801,6 +4152,15 @@
3801 } 4152 }
3802 4153
3803 { 4154 {
4155 name = "es6_weak_map___es6_weak_map_2.0.2.tgz";
4156 path = fetchurl {
4157 name = "es6_weak_map___es6_weak_map_2.0.2.tgz";
4158 url = "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz";
4159 sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f";
4160 };
4161 }
4162
4163 {
3804 name = "escape_html___escape_html_1.0.3.tgz"; 4164 name = "escape_html___escape_html_1.0.3.tgz";
3805 path = fetchurl { 4165 path = fetchurl {
3806 name = "escape_html___escape_html_1.0.3.tgz"; 4166 name = "escape_html___escape_html_1.0.3.tgz";
@@ -3828,6 +4188,15 @@
3828 } 4188 }
3829 4189
3830 { 4190 {
4191 name = "escope___escope_3.6.0.tgz";
4192 path = fetchurl {
4193 name = "escope___escope_3.6.0.tgz";
4194 url = "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz";
4195 sha1 = "e01975e812781a163a6dadfdd80398dc64c889c3";
4196 };
4197 }
4198
4199 {
3831 name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; 4200 name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz";
3832 path = fetchurl { 4201 path = fetchurl {
3833 name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; 4202 name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz";
@@ -3837,38 +4206,38 @@
3837 } 4206 }
3838 4207
3839 { 4208 {
3840 name = "eslint_module_utils___eslint_module_utils_2.2.0.tgz"; 4209 name = "eslint_module_utils___eslint_module_utils_2.4.0.tgz";
3841 path = fetchurl { 4210 path = fetchurl {
3842 name = "eslint_module_utils___eslint_module_utils_2.2.0.tgz"; 4211 name = "eslint_module_utils___eslint_module_utils_2.4.0.tgz";
3843 url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz"; 4212 url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz";
3844 sha1 = "b270362cd88b1a48ad308976ce7fa54e98411746"; 4213 sha1 = "8b93499e9b00eab80ccb6614e69f03678e84e09a";
3845 }; 4214 };
3846 } 4215 }
3847 4216
3848 { 4217 {
3849 name = "eslint_plugin_import___eslint_plugin_import_2.14.0.tgz"; 4218 name = "eslint_plugin_import___eslint_plugin_import_2.17.3.tgz";
3850 path = fetchurl { 4219 path = fetchurl {
3851 name = "eslint_plugin_import___eslint_plugin_import_2.14.0.tgz"; 4220 name = "eslint_plugin_import___eslint_plugin_import_2.17.3.tgz";
3852 url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz"; 4221 url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.17.3.tgz";
3853 sha1 = "6b17626d2e3e6ad52cfce8807a845d15e22111a8"; 4222 sha1 = "00548b4434c18faebaba04b24ae6198f280de189";
3854 }; 4223 };
3855 } 4224 }
3856 4225
3857 { 4226 {
3858 name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.1.2.tgz"; 4227 name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.2.1.tgz";
3859 path = fetchurl { 4228 path = fetchurl {
3860 name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.1.2.tgz"; 4229 name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.2.1.tgz";
3861 url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz"; 4230 url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.1.tgz";
3862 sha1 = "69bca4890b36dcf0fe16dd2129d2d88b98f33f88"; 4231 sha1 = "4ebba9f339b600ff415ae4166e3e2e008831cf0c";
3863 }; 4232 };
3864 } 4233 }
3865 4234
3866 { 4235 {
3867 name = "eslint_plugin_promise___eslint_plugin_promise_4.0.1.tgz"; 4236 name = "eslint_plugin_promise___eslint_plugin_promise_4.1.1.tgz";
3868 path = fetchurl { 4237 path = fetchurl {
3869 name = "eslint_plugin_promise___eslint_plugin_promise_4.0.1.tgz"; 4238 name = "eslint_plugin_promise___eslint_plugin_promise_4.1.1.tgz";
3870 url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz"; 4239 url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.1.1.tgz";
3871 sha1 = "2d074b653f35a23d1ba89d8e976a985117d1c6a2"; 4240 sha1 = "1e08cb68b5b2cd8839f8d5864c796f56d82746db";
3872 }; 4241 };
3873 } 4242 }
3874 4243
@@ -3918,6 +4287,15 @@
3918 } 4287 }
3919 4288
3920 { 4289 {
4290 name = "eslint___eslint_2.13.1.tgz";
4291 path = fetchurl {
4292 name = "eslint___eslint_2.13.1.tgz";
4293 url = "https://registry.yarnpkg.com/eslint/-/eslint-2.13.1.tgz";
4294 sha1 = "e4cc8fa0f009fb829aaae23855a29360be1f6c11";
4295 };
4296 }
4297
4298 {
3921 name = "eslint___eslint_5.11.1.tgz"; 4299 name = "eslint___eslint_5.11.1.tgz";
3922 path = fetchurl { 4300 path = fetchurl {
3923 name = "eslint___eslint_5.11.1.tgz"; 4301 name = "eslint___eslint_5.11.1.tgz";
@@ -3927,6 +4305,15 @@
3927 } 4305 }
3928 4306
3929 { 4307 {
4308 name = "espree___espree_3.5.4.tgz";
4309 path = fetchurl {
4310 name = "espree___espree_3.5.4.tgz";
4311 url = "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz";
4312 sha1 = "b0f447187c8a8bed944b815a660bddf5deb5d1a7";
4313 };
4314 }
4315
4316 {
3930 name = "espree___espree_5.0.0.tgz"; 4317 name = "espree___espree_5.0.0.tgz";
3931 path = fetchurl { 4318 path = fetchurl {
3932 name = "espree___espree_5.0.0.tgz"; 4319 name = "espree___espree_5.0.0.tgz";
@@ -3999,6 +4386,15 @@
3999 } 4386 }
4000 4387
4001 { 4388 {
4389 name = "event_emitter___event_emitter_0.3.5.tgz";
4390 path = fetchurl {
4391 name = "event_emitter___event_emitter_0.3.5.tgz";
4392 url = "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz";
4393 sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
4394 };
4395 }
4396
4397 {
4002 name = "eventemitter3___eventemitter3_3.1.0.tgz"; 4398 name = "eventemitter3___eventemitter3_3.1.0.tgz";
4003 path = fetchurl { 4399 path = fetchurl {
4004 name = "eventemitter3___eventemitter3_3.1.0.tgz"; 4400 name = "eventemitter3___eventemitter3_3.1.0.tgz";
@@ -4035,29 +4431,11 @@
4035 } 4431 }
4036 4432
4037 { 4433 {
4038 name = "exec_sh___exec_sh_0.2.2.tgz"; 4434 name = "exec_sh___exec_sh_0.3.2.tgz";
4039 path = fetchurl {
4040 name = "exec_sh___exec_sh_0.2.2.tgz";
4041 url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz";
4042 sha1 = "2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36";
4043 };
4044 }
4045
4046 {
4047 name = "execa___execa_0.10.0.tgz";
4048 path = fetchurl {
4049 name = "execa___execa_0.10.0.tgz";
4050 url = "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz";
4051 sha1 = "ff456a8f53f90f8eccc71a96d11bdfc7f082cb50";
4052 };
4053 }
4054
4055 {
4056 name = "execa___execa_0.7.0.tgz";
4057 path = fetchurl { 4435 path = fetchurl {
4058 name = "execa___execa_0.7.0.tgz"; 4436 name = "exec_sh___exec_sh_0.3.2.tgz";
4059 url = "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz"; 4437 url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz";
4060 sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; 4438 sha1 = "6738de2eb7c8e671d0366aea0b0db8c6f7d7391b";
4061 }; 4439 };
4062 } 4440 }
4063 4441
@@ -4080,20 +4458,20 @@
4080 } 4458 }
4081 4459
4082 { 4460 {
4083 name = "exit___exit_0.1.2.tgz"; 4461 name = "exit_hook___exit_hook_1.1.1.tgz";
4084 path = fetchurl { 4462 path = fetchurl {
4085 name = "exit___exit_0.1.2.tgz"; 4463 name = "exit_hook___exit_hook_1.1.1.tgz";
4086 url = "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz"; 4464 url = "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz";
4087 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c"; 4465 sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8";
4088 }; 4466 };
4089 } 4467 }
4090 4468
4091 { 4469 {
4092 name = "expand_brackets___expand_brackets_0.1.5.tgz"; 4470 name = "exit___exit_0.1.2.tgz";
4093 path = fetchurl { 4471 path = fetchurl {
4094 name = "expand_brackets___expand_brackets_0.1.5.tgz"; 4472 name = "exit___exit_0.1.2.tgz";
4095 url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz"; 4473 url = "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz";
4096 sha1 = "df07284e342a807cd733ac5af72411e581d1177b"; 4474 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
4097 }; 4475 };
4098 } 4476 }
4099 4477
@@ -4107,29 +4485,29 @@
4107 } 4485 }
4108 4486
4109 { 4487 {
4110 name = "expand_range___expand_range_1.8.2.tgz"; 4488 name = "expand_tilde___expand_tilde_2.0.2.tgz";
4111 path = fetchurl { 4489 path = fetchurl {
4112 name = "expand_range___expand_range_1.8.2.tgz"; 4490 name = "expand_tilde___expand_tilde_2.0.2.tgz";
4113 url = "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz"; 4491 url = "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz";
4114 sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; 4492 sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
4115 }; 4493 };
4116 } 4494 }
4117 4495
4118 { 4496 {
4119 name = "expect___expect_23.6.0.tgz"; 4497 name = "expect___expect_24.8.0.tgz";
4120 path = fetchurl { 4498 path = fetchurl {
4121 name = "expect___expect_23.6.0.tgz"; 4499 name = "expect___expect_24.8.0.tgz";
4122 url = "https://registry.yarnpkg.com/expect/-/expect-23.6.0.tgz"; 4500 url = "https://registry.yarnpkg.com/expect/-/expect-24.8.0.tgz";
4123 sha1 = "1e0c8d3ba9a581c87bd71fb9bc8862d443425f98"; 4501 sha1 = "471f8ec256b7b6129ca2524b2a62f030df38718d";
4124 }; 4502 };
4125 } 4503 }
4126 4504
4127 { 4505 {
4128 name = "express___express_4.16.4.tgz"; 4506 name = "express___express_4.17.1.tgz";
4129 path = fetchurl { 4507 path = fetchurl {
4130 name = "express___express_4.16.4.tgz"; 4508 name = "express___express_4.17.1.tgz";
4131 url = "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz"; 4509 url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz";
4132 sha1 = "fddef61926109e24c515ea97fd2f1bdbf62df12e"; 4510 sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134";
4133 }; 4511 };
4134 } 4512 }
4135 4513
@@ -4170,15 +4548,6 @@
4170 } 4548 }
4171 4549
4172 { 4550 {
4173 name = "extglob___extglob_0.3.2.tgz";
4174 path = fetchurl {
4175 name = "extglob___extglob_0.3.2.tgz";
4176 url = "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz";
4177 sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
4178 };
4179 }
4180
4181 {
4182 name = "extglob___extglob_2.0.4.tgz"; 4551 name = "extglob___extglob_2.0.4.tgz";
4183 path = fetchurl { 4552 path = fetchurl {
4184 name = "extglob___extglob_2.0.4.tgz"; 4553 name = "extglob___extglob_2.0.4.tgz";
@@ -4233,15 +4602,6 @@
4233 } 4602 }
4234 4603
4235 { 4604 {
4236 name = "fastparse___fastparse_1.1.2.tgz";
4237 path = fetchurl {
4238 name = "fastparse___fastparse_1.1.2.tgz";
4239 url = "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz";
4240 sha1 = "91728c5a5942eced8531283c79441ee4122c35a9";
4241 };
4242 }
4243
4244 {
4245 name = "faye_websocket___faye_websocket_0.10.0.tgz"; 4605 name = "faye_websocket___faye_websocket_0.10.0.tgz";
4246 path = fetchurl { 4606 path = fetchurl {
4247 name = "faye_websocket___faye_websocket_0.10.0.tgz"; 4607 name = "faye_websocket___faye_websocket_0.10.0.tgz";
@@ -4278,15 +4638,6 @@
4278 } 4638 }
4279 4639
4280 { 4640 {
4281 name = "fibers___fibers_3.1.1.tgz";
4282 path = fetchurl {
4283 name = "fibers___fibers_3.1.1.tgz";
4284 url = "https://registry.yarnpkg.com/fibers/-/fibers-3.1.1.tgz";
4285 sha1 = "0238902ca938347bd779523692fbeefdf4f688ab";
4286 };
4287 }
4288
4289 {
4290 name = "figgy_pudding___figgy_pudding_3.5.1.tgz"; 4641 name = "figgy_pudding___figgy_pudding_3.5.1.tgz";
4291 path = fetchurl { 4642 path = fetchurl {
4292 name = "figgy_pudding___figgy_pudding_3.5.1.tgz"; 4643 name = "figgy_pudding___figgy_pudding_3.5.1.tgz";
@@ -4296,47 +4647,47 @@
4296 } 4647 }
4297 4648
4298 { 4649 {
4299 name = "figures___figures_2.0.0.tgz"; 4650 name = "figures___figures_1.7.0.tgz";
4300 path = fetchurl { 4651 path = fetchurl {
4301 name = "figures___figures_2.0.0.tgz"; 4652 name = "figures___figures_1.7.0.tgz";
4302 url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; 4653 url = "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz";
4303 sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; 4654 sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
4304 }; 4655 };
4305 } 4656 }
4306 4657
4307 { 4658 {
4308 name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; 4659 name = "figures___figures_2.0.0.tgz";
4309 path = fetchurl { 4660 path = fetchurl {
4310 name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; 4661 name = "figures___figures_2.0.0.tgz";
4311 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz"; 4662 url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz";
4312 sha1 = "c392990c3e684783d838b8c84a45d8a048458361"; 4663 sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962";
4313 }; 4664 };
4314 } 4665 }
4315 4666
4316 { 4667 {
4317 name = "file_loader___file_loader_3.0.1.tgz"; 4668 name = "file_entry_cache___file_entry_cache_1.3.1.tgz";
4318 path = fetchurl { 4669 path = fetchurl {
4319 name = "file_loader___file_loader_3.0.1.tgz"; 4670 name = "file_entry_cache___file_entry_cache_1.3.1.tgz";
4320 url = "https://registry.yarnpkg.com/file-loader/-/file-loader-3.0.1.tgz"; 4671 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-1.3.1.tgz";
4321 sha1 = "f8e0ba0b599918b51adfe45d66d1e771ad560faa"; 4672 sha1 = "44c61ea607ae4be9c1402f41f44270cbfe334ff8";
4322 }; 4673 };
4323 } 4674 }
4324 4675
4325 { 4676 {
4326 name = "filename_regex___filename_regex_2.0.1.tgz"; 4677 name = "file_entry_cache___file_entry_cache_2.0.0.tgz";
4327 path = fetchurl { 4678 path = fetchurl {
4328 name = "filename_regex___filename_regex_2.0.1.tgz"; 4679 name = "file_entry_cache___file_entry_cache_2.0.0.tgz";
4329 url = "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz"; 4680 url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz";
4330 sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"; 4681 sha1 = "c392990c3e684783d838b8c84a45d8a048458361";
4331 }; 4682 };
4332 } 4683 }
4333 4684
4334 { 4685 {
4335 name = "fileset___fileset_2.0.3.tgz"; 4686 name = "file_loader___file_loader_4.0.0.tgz";
4336 path = fetchurl { 4687 path = fetchurl {
4337 name = "fileset___fileset_2.0.3.tgz"; 4688 name = "file_loader___file_loader_4.0.0.tgz";
4338 url = "https://registry.yarnpkg.com/fileset/-/fileset-2.0.3.tgz"; 4689 url = "https://registry.yarnpkg.com/file-loader/-/file-loader-4.0.0.tgz";
4339 sha1 = "8e7548a96d3cc2327ee5e674168723a333bba2a0"; 4690 sha1 = "c3570783fefb6e1bc0978a856f4bf5825b966c2a";
4340 }; 4691 };
4341 } 4692 }
4342 4693
@@ -4350,15 +4701,6 @@
4350 } 4701 }
4351 4702
4352 { 4703 {
4353 name = "fill_range___fill_range_2.2.4.tgz";
4354 path = fetchurl {
4355 name = "fill_range___fill_range_2.2.4.tgz";
4356 url = "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz";
4357 sha1 = "eb1e773abb056dcd8df2bfdf6af59b8b3a936565";
4358 };
4359 }
4360
4361 {
4362 name = "fill_range___fill_range_4.0.0.tgz"; 4704 name = "fill_range___fill_range_4.0.0.tgz";
4363 path = fetchurl { 4705 path = fetchurl {
4364 name = "fill_range___fill_range_4.0.0.tgz"; 4706 name = "fill_range___fill_range_4.0.0.tgz";
@@ -4368,20 +4710,11 @@
4368 } 4710 }
4369 4711
4370 { 4712 {
4371 name = "finalhandler___finalhandler_1.1.1.tgz"; 4713 name = "finalhandler___finalhandler_1.1.2.tgz";
4372 path = fetchurl {
4373 name = "finalhandler___finalhandler_1.1.1.tgz";
4374 url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.1.tgz";
4375 sha1 = "eebf4ed840079c83f4249038c9d703008301b105";
4376 };
4377 }
4378
4379 {
4380 name = "find_cache_dir___find_cache_dir_1.0.0.tgz";
4381 path = fetchurl { 4714 path = fetchurl {
4382 name = "find_cache_dir___find_cache_dir_1.0.0.tgz"; 4715 name = "finalhandler___finalhandler_1.1.2.tgz";
4383 url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz"; 4716 url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz";
4384 sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f"; 4717 sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d";
4385 }; 4718 };
4386 } 4719 }
4387 4720
@@ -4395,11 +4728,11 @@
4395 } 4728 }
4396 4729
4397 { 4730 {
4398 name = "find_up___find_up_1.1.2.tgz"; 4731 name = "find_root___find_root_1.1.0.tgz";
4399 path = fetchurl { 4732 path = fetchurl {
4400 name = "find_up___find_up_1.1.2.tgz"; 4733 name = "find_root___find_root_1.1.0.tgz";
4401 url = "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz"; 4734 url = "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz";
4402 sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; 4735 sha1 = "abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4";
4403 }; 4736 };
4404 } 4737 }
4405 4738
@@ -4422,6 +4755,15 @@
4422 } 4755 }
4423 4756
4424 { 4757 {
4758 name = "findup_sync___findup_sync_2.0.0.tgz";
4759 path = fetchurl {
4760 name = "findup_sync___findup_sync_2.0.0.tgz";
4761 url = "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz";
4762 sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
4763 };
4764 }
4765
4766 {
4425 name = "flat_cache___flat_cache_1.3.4.tgz"; 4767 name = "flat_cache___flat_cache_1.3.4.tgz";
4426 path = fetchurl { 4768 path = fetchurl {
4427 name = "flat_cache___flat_cache_1.3.4.tgz"; 4769 name = "flat_cache___flat_cache_1.3.4.tgz";
@@ -4440,6 +4782,15 @@
4440 } 4782 }
4441 4783
4442 { 4784 {
4785 name = "follow_redirects___follow_redirects_1.5.10.tgz";
4786 path = fetchurl {
4787 name = "follow_redirects___follow_redirects_1.5.10.tgz";
4788 url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz";
4789 sha1 = "7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a";
4790 };
4791 }
4792
4793 {
4443 name = "follow_redirects___follow_redirects_1.6.0.tgz"; 4794 name = "follow_redirects___follow_redirects_1.6.0.tgz";
4444 path = fetchurl { 4795 path = fetchurl {
4445 name = "follow_redirects___follow_redirects_1.6.0.tgz"; 4796 name = "follow_redirects___follow_redirects_1.6.0.tgz";
@@ -4476,15 +4827,6 @@
4476 } 4827 }
4477 4828
4478 { 4829 {
4479 name = "for_own___for_own_0.1.5.tgz";
4480 path = fetchurl {
4481 name = "for_own___for_own_0.1.5.tgz";
4482 url = "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz";
4483 sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
4484 };
4485 }
4486
4487 {
4488 name = "for_own___for_own_1.0.0.tgz"; 4830 name = "for_own___for_own_1.0.0.tgz";
4489 path = fetchurl { 4831 path = fetchurl {
4490 name = "for_own___for_own_1.0.0.tgz"; 4832 name = "for_own___for_own_1.0.0.tgz";
@@ -4548,6 +4890,33 @@
4548 } 4890 }
4549 4891
4550 { 4892 {
4893 name = "front_matter___front_matter_2.1.2.tgz";
4894 path = fetchurl {
4895 name = "front_matter___front_matter_2.1.2.tgz";
4896 url = "https://registry.yarnpkg.com/front-matter/-/front-matter-2.1.2.tgz";
4897 sha1 = "f75983b9f2f413be658c93dfd7bd8ce4078f5cdb";
4898 };
4899 }
4900
4901 {
4902 name = "fs_extra___fs_extra_3.0.1.tgz";
4903 path = fetchurl {
4904 name = "fs_extra___fs_extra_3.0.1.tgz";
4905 url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz";
4906 sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291";
4907 };
4908 }
4909
4910 {
4911 name = "fs_extra___fs_extra_8.0.1.tgz";
4912 path = fetchurl {
4913 name = "fs_extra___fs_extra_8.0.1.tgz";
4914 url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.0.1.tgz";
4915 sha1 = "90294081f978b1f182f347a440a209154344285b";
4916 };
4917 }
4918
4919 {
4551 name = "fs_minipass___fs_minipass_1.2.5.tgz"; 4920 name = "fs_minipass___fs_minipass_1.2.5.tgz";
4552 path = fetchurl { 4921 path = fetchurl {
4553 name = "fs_minipass___fs_minipass_1.2.5.tgz"; 4922 name = "fs_minipass___fs_minipass_1.2.5.tgz";
@@ -4575,11 +4944,11 @@
4575 } 4944 }
4576 4945
4577 { 4946 {
4578 name = "fsevents___fsevents_1.2.4.tgz"; 4947 name = "fsevents___fsevents_1.2.9.tgz";
4579 path = fetchurl { 4948 path = fetchurl {
4580 name = "fsevents___fsevents_1.2.4.tgz"; 4949 name = "fsevents___fsevents_1.2.9.tgz";
4581 url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.4.tgz"; 4950 url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz";
4582 sha1 = "f41dcb1af2582af3692da36fc55cbd8e1041c426"; 4951 sha1 = "3f5ed66583ccd6f400b5a00db6f7e861363e388f";
4583 }; 4952 };
4584 } 4953 }
4585 4954
@@ -4620,6 +4989,24 @@
4620 } 4989 }
4621 4990
4622 { 4991 {
4992 name = "generate_function___generate_function_2.3.1.tgz";
4993 path = fetchurl {
4994 name = "generate_function___generate_function_2.3.1.tgz";
4995 url = "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz";
4996 sha1 = "f069617690c10c868e73b8465746764f97c3479f";
4997 };
4998 }
4999
5000 {
5001 name = "generate_object_property___generate_object_property_1.2.0.tgz";
5002 path = fetchurl {
5003 name = "generate_object_property___generate_object_property_1.2.0.tgz";
5004 url = "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz";
5005 sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
5006 };
5007 }
5008
5009 {
4623 name = "generic_pool___generic_pool_2.4.3.tgz"; 5010 name = "generic_pool___generic_pool_2.4.3.tgz";
4624 path = fetchurl { 5011 path = fetchurl {
4625 name = "generic_pool___generic_pool_2.4.3.tgz"; 5012 name = "generic_pool___generic_pool_2.4.3.tgz";
@@ -4638,15 +5025,6 @@
4638 } 5025 }
4639 5026
4640 { 5027 {
4641 name = "get_stream___get_stream_3.0.0.tgz";
4642 path = fetchurl {
4643 name = "get_stream___get_stream_3.0.0.tgz";
4644 url = "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz";
4645 sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
4646 };
4647 }
4648
4649 {
4650 name = "get_stream___get_stream_4.1.0.tgz"; 5028 name = "get_stream___get_stream_4.1.0.tgz";
4651 path = fetchurl { 5029 path = fetchurl {
4652 name = "get_stream___get_stream_4.1.0.tgz"; 5030 name = "get_stream___get_stream_4.1.0.tgz";
@@ -4674,47 +5052,56 @@
4674 } 5052 }
4675 5053
4676 { 5054 {
4677 name = "glob_base___glob_base_0.3.0.tgz"; 5055 name = "glob_parent___glob_parent_3.1.0.tgz";
4678 path = fetchurl { 5056 path = fetchurl {
4679 name = "glob_base___glob_base_0.3.0.tgz"; 5057 name = "glob_parent___glob_parent_3.1.0.tgz";
4680 url = "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz"; 5058 url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz";
4681 sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"; 5059 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
4682 }; 5060 };
4683 } 5061 }
4684 5062
4685 { 5063 {
4686 name = "glob_parent___glob_parent_2.0.0.tgz"; 5064 name = "glob___glob_7.1.4.tgz";
4687 path = fetchurl { 5065 path = fetchurl {
4688 name = "glob_parent___glob_parent_2.0.0.tgz"; 5066 name = "glob___glob_7.1.4.tgz";
4689 url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz"; 5067 url = "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz";
4690 sha1 = "81383d72db054fcccf5336daa902f182f6edbb28"; 5068 sha1 = "aa608a2f6c577ad357e1ae5a5c26d9a8d1969255";
4691 }; 5069 };
4692 } 5070 }
4693 5071
4694 { 5072 {
4695 name = "glob_parent___glob_parent_3.1.0.tgz"; 5073 name = "glob___glob_7.1.3.tgz";
4696 path = fetchurl { 5074 path = fetchurl {
4697 name = "glob_parent___glob_parent_3.1.0.tgz"; 5075 name = "glob___glob_7.1.3.tgz";
4698 url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz"; 5076 url = "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz";
4699 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; 5077 sha1 = "3960832d3f1574108342dafd3a67b332c0969df1";
4700 }; 5078 };
4701 } 5079 }
4702 5080
4703 { 5081 {
4704 name = "glob___glob_7.1.3.tgz"; 5082 name = "global_modules___global_modules_1.0.0.tgz";
4705 path = fetchurl { 5083 path = fetchurl {
4706 name = "glob___glob_7.1.3.tgz"; 5084 name = "global_modules___global_modules_1.0.0.tgz";
4707 url = "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz"; 5085 url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz";
4708 sha1 = "3960832d3f1574108342dafd3a67b332c0969df1"; 5086 sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea";
4709 }; 5087 };
4710 } 5088 }
4711 5089
4712 { 5090 {
4713 name = "global_modules_path___global_modules_path_2.3.1.tgz"; 5091 name = "global_prefix___global_prefix_1.0.2.tgz";
4714 path = fetchurl { 5092 path = fetchurl {
4715 name = "global_modules_path___global_modules_path_2.3.1.tgz"; 5093 name = "global_prefix___global_prefix_1.0.2.tgz";
4716 url = "https://registry.yarnpkg.com/global-modules-path/-/global-modules-path-2.3.1.tgz"; 5094 url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz";
4717 sha1 = "e541f4c800a1a8514a990477b267ac67525b9931"; 5095 sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
5096 };
5097 }
5098
5099 {
5100 name = "globals___globals_11.12.0.tgz";
5101 path = fetchurl {
5102 name = "globals___globals_11.12.0.tgz";
5103 url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz";
5104 sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e";
4718 }; 5105 };
4719 } 5106 }
4720 5107
@@ -4746,6 +5133,24 @@
4746 } 5133 }
4747 5134
4748 { 5135 {
5136 name = "globule___globule_1.2.1.tgz";
5137 path = fetchurl {
5138 name = "globule___globule_1.2.1.tgz";
5139 url = "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz";
5140 sha1 = "5dffb1b191f22d20797a9369b49eab4e9839696d";
5141 };
5142 }
5143
5144 {
5145 name = "gonzales_pe_sl___gonzales_pe_sl_4.2.3.tgz";
5146 path = fetchurl {
5147 name = "gonzales_pe_sl___gonzales_pe_sl_4.2.3.tgz";
5148 url = "https://registry.yarnpkg.com/gonzales-pe-sl/-/gonzales-pe-sl-4.2.3.tgz";
5149 sha1 = "6a868bc380645f141feeb042c6f97fcc71b59fe6";
5150 };
5151 }
5152
5153 {
4749 name = "graceful_fs___graceful_fs_4.1.15.tgz"; 5154 name = "graceful_fs___graceful_fs_4.1.15.tgz";
4750 path = fetchurl { 5155 path = fetchurl {
4751 name = "graceful_fs___graceful_fs_4.1.15.tgz"; 5156 name = "graceful_fs___graceful_fs_4.1.15.tgz";
@@ -4782,11 +5187,11 @@
4782 } 5187 }
4783 5188
4784 { 5189 {
4785 name = "handlebars___handlebars_4.0.12.tgz"; 5190 name = "handlebars___handlebars_4.1.0.tgz";
4786 path = fetchurl { 5191 path = fetchurl {
4787 name = "handlebars___handlebars_4.0.12.tgz"; 5192 name = "handlebars___handlebars_4.1.0.tgz";
4788 url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.12.tgz"; 5193 url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz";
4789 sha1 = "2c15c8a96d46da5e266700518ba8cb8d919d5bc5"; 5194 sha1 = "0d6a6f34ff1f63cecec8423aa4169827bf787c3a";
4790 }; 5195 };
4791 } 5196 }
4792 5197
@@ -4953,20 +5358,20 @@
4953 } 5358 }
4954 5359
4955 { 5360 {
4956 name = "hoist_non_react_statics___hoist_non_react_statics_3.2.1.tgz"; 5361 name = "hoist_non_react_statics___hoist_non_react_statics_3.3.0.tgz";
4957 path = fetchurl { 5362 path = fetchurl {
4958 name = "hoist_non_react_statics___hoist_non_react_statics_3.2.1.tgz"; 5363 name = "hoist_non_react_statics___hoist_non_react_statics_3.3.0.tgz";
4959 url = "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.2.1.tgz"; 5364 url = "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz";
4960 sha1 = "c09c0555c84b38a7ede6912b61efddafd6e75e1e"; 5365 sha1 = "b09178f0122184fb95acf525daaecb4d8f45958b";
4961 }; 5366 };
4962 } 5367 }
4963 5368
4964 { 5369 {
4965 name = "home_or_tmp___home_or_tmp_2.0.0.tgz"; 5370 name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz";
4966 path = fetchurl { 5371 path = fetchurl {
4967 name = "home_or_tmp___home_or_tmp_2.0.0.tgz"; 5372 name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz";
4968 url = "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; 5373 url = "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz";
4969 sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; 5374 sha1 = "743298cef4e5af3e194161fbadcc2151d3a058e8";
4970 }; 5375 };
4971 } 5376 }
4972 5377
@@ -5025,6 +5430,15 @@
5025 } 5430 }
5026 5431
5027 { 5432 {
5433 name = "html_element_map___html_element_map_1.0.1.tgz";
5434 path = fetchurl {
5435 name = "html_element_map___html_element_map_1.0.1.tgz";
5436 url = "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.0.1.tgz";
5437 sha1 = "3c4fcb4874ebddfe4283b51c8994e7713782b592";
5438 };
5439 }
5440
5441 {
5028 name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; 5442 name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz";
5029 path = fetchurl { 5443 path = fetchurl {
5030 name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; 5444 name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz";
@@ -5061,6 +5475,15 @@
5061 } 5475 }
5062 5476
5063 { 5477 {
5478 name = "http_errors___http_errors_1.7.2.tgz";
5479 path = fetchurl {
5480 name = "http_errors___http_errors_1.7.2.tgz";
5481 url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz";
5482 sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f";
5483 };
5484 }
5485
5486 {
5064 name = "http_errors___http_errors_1.6.3.tgz"; 5487 name = "http_errors___http_errors_1.6.3.tgz";
5065 path = fetchurl { 5488 path = fetchurl {
5066 name = "http_errors___http_errors_1.6.3.tgz"; 5489 name = "http_errors___http_errors_1.6.3.tgz";
@@ -5088,11 +5511,11 @@
5088 } 5511 }
5089 5512
5090 { 5513 {
5091 name = "http_proxy_middleware___http_proxy_middleware_0.18.0.tgz"; 5514 name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz";
5092 path = fetchurl { 5515 path = fetchurl {
5093 name = "http_proxy_middleware___http_proxy_middleware_0.18.0.tgz"; 5516 name = "http_proxy_middleware___http_proxy_middleware_0.19.1.tgz";
5094 url = "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.18.0.tgz"; 5517 url = "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz";
5095 sha1 = "0987e6bb5a5606e5a69168d8f967a87f15dd8aab"; 5518 sha1 = "183c7dc4aa1479150306498c210cdaf96080a43a";
5096 }; 5519 };
5097 } 5520 }
5098 5521
@@ -5124,15 +5547,6 @@
5124 } 5547 }
5125 5548
5126 { 5549 {
5127 name = "iconv_lite___iconv_lite_0.4.23.tgz";
5128 path = fetchurl {
5129 name = "iconv_lite___iconv_lite_0.4.23.tgz";
5130 url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.23.tgz";
5131 sha1 = "297871f63be507adcfbfca715d0cd0eed84e9a63";
5132 };
5133 }
5134
5135 {
5136 name = "iconv_lite___iconv_lite_0.4.24.tgz"; 5550 name = "iconv_lite___iconv_lite_0.4.24.tgz";
5137 path = fetchurl { 5551 path = fetchurl {
5138 name = "iconv_lite___iconv_lite_0.4.24.tgz"; 5552 name = "iconv_lite___iconv_lite_0.4.24.tgz";
@@ -5151,11 +5565,11 @@
5151 } 5565 }
5152 5566
5153 { 5567 {
5154 name = "icss_utils___icss_utils_4.0.0.tgz"; 5568 name = "icss_utils___icss_utils_4.1.0.tgz";
5155 path = fetchurl { 5569 path = fetchurl {
5156 name = "icss_utils___icss_utils_4.0.0.tgz"; 5570 name = "icss_utils___icss_utils_4.1.0.tgz";
5157 url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.0.0.tgz"; 5571 url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.0.tgz";
5158 sha1 = "d52cf4bcdcfa1c45c2dbefb4ffdf6b00ef608098"; 5572 sha1 = "339dbbffb9f8729a243b701e1c29d4cc58c52f0e";
5159 }; 5573 };
5160 } 5574 }
5161 5575
@@ -5187,6 +5601,15 @@
5187 } 5601 }
5188 5602
5189 { 5603 {
5604 name = "ignore___ignore_3.3.10.tgz";
5605 path = fetchurl {
5606 name = "ignore___ignore_3.3.10.tgz";
5607 url = "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz";
5608 sha1 = "0a97fb876986e8081c631160f8f9f389157f0043";
5609 };
5610 }
5611
5612 {
5190 name = "ignore___ignore_4.0.6.tgz"; 5613 name = "ignore___ignore_4.0.6.tgz";
5191 path = fetchurl { 5614 path = fetchurl {
5192 name = "ignore___ignore_4.0.6.tgz"; 5615 name = "ignore___ignore_4.0.6.tgz";
@@ -5232,15 +5655,6 @@
5232 } 5655 }
5233 5656
5234 { 5657 {
5235 name = "import_local___import_local_1.0.0.tgz";
5236 path = fetchurl {
5237 name = "import_local___import_local_1.0.0.tgz";
5238 url = "https://registry.yarnpkg.com/import-local/-/import-local-1.0.0.tgz";
5239 sha1 = "5e4ffdc03f4fe6c009c6729beb29631c2f8227bc";
5240 };
5241 }
5242
5243 {
5244 name = "import_local___import_local_2.0.0.tgz"; 5658 name = "import_local___import_local_2.0.0.tgz";
5245 path = fetchurl { 5659 path = fetchurl {
5246 name = "import_local___import_local_2.0.0.tgz"; 5660 name = "import_local___import_local_2.0.0.tgz";
@@ -5322,6 +5736,15 @@
5322 } 5736 }
5323 5737
5324 { 5738 {
5739 name = "inquirer___inquirer_0.12.0.tgz";
5740 path = fetchurl {
5741 name = "inquirer___inquirer_0.12.0.tgz";
5742 url = "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz";
5743 sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e";
5744 };
5745 }
5746
5747 {
5325 name = "inquirer___inquirer_6.2.1.tgz"; 5748 name = "inquirer___inquirer_6.2.1.tgz";
5326 path = fetchurl { 5749 path = fetchurl {
5327 name = "inquirer___inquirer_6.2.1.tgz"; 5750 name = "inquirer___inquirer_6.2.1.tgz";
@@ -5331,11 +5754,11 @@
5331 } 5754 }
5332 5755
5333 { 5756 {
5334 name = "internal_ip___internal_ip_3.0.1.tgz"; 5757 name = "internal_ip___internal_ip_4.3.0.tgz";
5335 path = fetchurl { 5758 path = fetchurl {
5336 name = "internal_ip___internal_ip_3.0.1.tgz"; 5759 name = "internal_ip___internal_ip_4.3.0.tgz";
5337 url = "https://registry.yarnpkg.com/internal-ip/-/internal-ip-3.0.1.tgz"; 5760 url = "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz";
5338 sha1 = "df5c99876e1d2eb2ea2d74f520e3f669a00ece27"; 5761 sha1 = "845452baad9d2ca3b69c635a137acb9a0dad0907";
5339 }; 5762 };
5340 } 5763 }
5341 5764
@@ -5349,11 +5772,11 @@
5349 } 5772 }
5350 5773
5351 { 5774 {
5352 name = "intersection_observer___intersection_observer_0.5.1.tgz"; 5775 name = "intersection_observer___intersection_observer_0.7.0.tgz";
5353 path = fetchurl { 5776 path = fetchurl {
5354 name = "intersection_observer___intersection_observer_0.5.1.tgz"; 5777 name = "intersection_observer___intersection_observer_0.7.0.tgz";
5355 url = "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.5.1.tgz"; 5778 url = "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.7.0.tgz";
5356 sha1 = "e340fc56ce74290fe2b2394d1ce88c4353ac6dfa"; 5779 sha1 = "ee16bee978db53516ead2f0a8154b09b400bbdc9";
5357 }; 5780 };
5358 } 5781 }
5359 5782
@@ -5376,6 +5799,15 @@
5376 } 5799 }
5377 5800
5378 { 5801 {
5802 name = "intl_messageformat_parser___intl_messageformat_parser_1.6.5.tgz";
5803 path = fetchurl {
5804 name = "intl_messageformat_parser___intl_messageformat_parser_1.6.5.tgz";
5805 url = "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-1.6.5.tgz";
5806 sha1 = "40f5fc19855f203389a3fc926cc3c88d7a573496";
5807 };
5808 }
5809
5810 {
5379 name = "intl_messageformat___intl_messageformat_2.2.0.tgz"; 5811 name = "intl_messageformat___intl_messageformat_2.2.0.tgz";
5380 path = fetchurl { 5812 path = fetchurl {
5381 name = "intl_messageformat___intl_messageformat_2.2.0.tgz"; 5813 name = "intl_messageformat___intl_messageformat_2.2.0.tgz";
@@ -5385,11 +5817,11 @@
5385 } 5817 }
5386 5818
5387 { 5819 {
5388 name = "intl_relativeformat___intl_relativeformat_2.1.0.tgz"; 5820 name = "intl_relativeformat___intl_relativeformat_2.2.0.tgz";
5389 path = fetchurl { 5821 path = fetchurl {
5390 name = "intl_relativeformat___intl_relativeformat_2.1.0.tgz"; 5822 name = "intl_relativeformat___intl_relativeformat_2.2.0.tgz";
5391 url = "https://registry.yarnpkg.com/intl-relativeformat/-/intl-relativeformat-2.1.0.tgz"; 5823 url = "https://registry.yarnpkg.com/intl-relativeformat/-/intl-relativeformat-2.2.0.tgz";
5392 sha1 = "010f1105802251f40ac47d0e3e1a201348a255df"; 5824 sha1 = "6aca95d019ec8d30b6c5653b6629f9983ea5b6c5";
5393 }; 5825 };
5394 } 5826 }
5395 5827
@@ -5412,15 +5844,6 @@
5412 } 5844 }
5413 5845
5414 { 5846 {
5415 name = "invert_kv___invert_kv_1.0.0.tgz";
5416 path = fetchurl {
5417 name = "invert_kv___invert_kv_1.0.0.tgz";
5418 url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz";
5419 sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
5420 };
5421 }
5422
5423 {
5424 name = "invert_kv___invert_kv_2.0.0.tgz"; 5847 name = "invert_kv___invert_kv_2.0.0.tgz";
5425 path = fetchurl { 5848 path = fetchurl {
5426 name = "invert_kv___invert_kv_2.0.0.tgz"; 5849 name = "invert_kv___invert_kv_2.0.0.tgz";
@@ -5448,20 +5871,11 @@
5448 } 5871 }
5449 5872
5450 { 5873 {
5451 name = "ipaddr.js___ipaddr.js_1.8.0.tgz"; 5874 name = "ipaddr.js___ipaddr.js_1.9.0.tgz";
5452 path = fetchurl {
5453 name = "ipaddr.js___ipaddr.js_1.8.0.tgz";
5454 url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz";
5455 sha1 = "eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e";
5456 };
5457 }
5458
5459 {
5460 name = "ipaddr.js___ipaddr.js_1.8.1.tgz";
5461 path = fetchurl { 5875 path = fetchurl {
5462 name = "ipaddr.js___ipaddr.js_1.8.1.tgz"; 5876 name = "ipaddr.js___ipaddr.js_1.9.0.tgz";
5463 url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.1.tgz"; 5877 url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz";
5464 sha1 = "fa4b79fa47fd3def5e3b159825161c0a519c9427"; 5878 sha1 = "37df74e430a0e47550fe54a2defe30d8acd95f65";
5465 }; 5879 };
5466 } 5880 }
5467 5881
@@ -5538,6 +5952,15 @@
5538 } 5952 }
5539 5953
5540 { 5954 {
5955 name = "is_buffer___is_buffer_2.0.3.tgz";
5956 path = fetchurl {
5957 name = "is_buffer___is_buffer_2.0.3.tgz";
5958 url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz";
5959 sha1 = "4ecf3fcf749cbd1e472689e109ac66261a25e725";
5960 };
5961 }
5962
5963 {
5541 name = "is_builtin_module___is_builtin_module_1.0.0.tgz"; 5964 name = "is_builtin_module___is_builtin_module_1.0.0.tgz";
5542 path = fetchurl { 5965 path = fetchurl {
5543 name = "is_builtin_module___is_builtin_module_1.0.0.tgz"; 5966 name = "is_builtin_module___is_builtin_module_1.0.0.tgz";
@@ -5556,11 +5979,11 @@
5556 } 5979 }
5557 5980
5558 { 5981 {
5559 name = "is_ci___is_ci_1.2.1.tgz"; 5982 name = "is_ci___is_ci_2.0.0.tgz";
5560 path = fetchurl { 5983 path = fetchurl {
5561 name = "is_ci___is_ci_1.2.1.tgz"; 5984 name = "is_ci___is_ci_2.0.0.tgz";
5562 url = "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz"; 5985 url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz";
5563 sha1 = "e3779c8ee17fccf428488f6e281187f2e632841c"; 5986 sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c";
5564 }; 5987 };
5565 } 5988 }
5566 5989
@@ -5628,24 +6051,6 @@
5628 } 6051 }
5629 6052
5630 { 6053 {
5631 name = "is_dotfile___is_dotfile_1.0.3.tgz";
5632 path = fetchurl {
5633 name = "is_dotfile___is_dotfile_1.0.3.tgz";
5634 url = "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz";
5635 sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1";
5636 };
5637 }
5638
5639 {
5640 name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz";
5641 path = fetchurl {
5642 name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz";
5643 url = "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz";
5644 sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534";
5645 };
5646 }
5647
5648 {
5649 name = "is_extendable___is_extendable_0.1.1.tgz"; 6054 name = "is_extendable___is_extendable_0.1.1.tgz";
5650 path = fetchurl { 6055 path = fetchurl {
5651 name = "is_extendable___is_extendable_0.1.1.tgz"; 6056 name = "is_extendable___is_extendable_0.1.1.tgz";
@@ -5664,15 +6069,6 @@
5664 } 6069 }
5665 6070
5666 { 6071 {
5667 name = "is_extglob___is_extglob_1.0.0.tgz";
5668 path = fetchurl {
5669 name = "is_extglob___is_extglob_1.0.0.tgz";
5670 url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz";
5671 sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
5672 };
5673 }
5674
5675 {
5676 name = "is_extglob___is_extglob_2.1.1.tgz"; 6072 name = "is_extglob___is_extglob_2.1.1.tgz";
5677 path = fetchurl { 6073 path = fetchurl {
5678 name = "is_extglob___is_extglob_2.1.1.tgz"; 6074 name = "is_extglob___is_extglob_2.1.1.tgz";
@@ -5682,15 +6078,6 @@
5682 } 6078 }
5683 6079
5684 { 6080 {
5685 name = "is_finite___is_finite_1.0.2.tgz";
5686 path = fetchurl {
5687 name = "is_finite___is_finite_1.0.2.tgz";
5688 url = "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz";
5689 sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
5690 };
5691 }
5692
5693 {
5694 name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; 6081 name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
5695 path = fetchurl { 6082 path = fetchurl {
5696 name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; 6083 name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz";
@@ -5709,20 +6096,11 @@
5709 } 6096 }
5710 6097
5711 { 6098 {
5712 name = "is_generator_fn___is_generator_fn_1.0.0.tgz"; 6099 name = "is_generator_fn___is_generator_fn_2.0.0.tgz";
5713 path = fetchurl { 6100 path = fetchurl {
5714 name = "is_generator_fn___is_generator_fn_1.0.0.tgz"; 6101 name = "is_generator_fn___is_generator_fn_2.0.0.tgz";
5715 url = "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-1.0.0.tgz"; 6102 url = "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.0.0.tgz";
5716 sha1 = "969d49e1bb3329f6bb7f09089be26578b2ddd46a"; 6103 sha1 = "038c31b774709641bda678b1f06a4e3227c10b3e";
5717 };
5718 }
5719
5720 {
5721 name = "is_glob___is_glob_2.0.1.tgz";
5722 path = fetchurl {
5723 name = "is_glob___is_glob_2.0.1.tgz";
5724 url = "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz";
5725 sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
5726 }; 6104 };
5727 } 6105 }
5728 6106
@@ -5745,6 +6123,24 @@
5745 } 6123 }
5746 6124
5747 { 6125 {
6126 name = "is_my_ip_valid___is_my_ip_valid_1.0.0.tgz";
6127 path = fetchurl {
6128 name = "is_my_ip_valid___is_my_ip_valid_1.0.0.tgz";
6129 url = "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz";
6130 sha1 = "7b351b8e8edd4d3995d4d066680e664d94696824";
6131 };
6132 }
6133
6134 {
6135 name = "is_my_json_valid___is_my_json_valid_2.20.0.tgz";
6136 path = fetchurl {
6137 name = "is_my_json_valid___is_my_json_valid_2.20.0.tgz";
6138 url = "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz";
6139 sha1 = "1345a6fca3e8daefc10d0fa77067f54cedafd59a";
6140 };
6141 }
6142
6143 {
5748 name = "is_nan___is_nan_1.2.1.tgz"; 6144 name = "is_nan___is_nan_1.2.1.tgz";
5749 path = fetchurl { 6145 path = fetchurl {
5750 name = "is_nan___is_nan_1.2.1.tgz"; 6146 name = "is_nan___is_nan_1.2.1.tgz";
@@ -5763,15 +6159,6 @@
5763 } 6159 }
5764 6160
5765 { 6161 {
5766 name = "is_number___is_number_2.1.0.tgz";
5767 path = fetchurl {
5768 name = "is_number___is_number_2.1.0.tgz";
5769 url = "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz";
5770 sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
5771 };
5772 }
5773
5774 {
5775 name = "is_number___is_number_3.0.0.tgz"; 6162 name = "is_number___is_number_3.0.0.tgz";
5776 path = fetchurl { 6163 path = fetchurl {
5777 name = "is_number___is_number_3.0.0.tgz"; 6164 name = "is_number___is_number_3.0.0.tgz";
@@ -5781,15 +6168,6 @@
5781 } 6168 }
5782 6169
5783 { 6170 {
5784 name = "is_number___is_number_4.0.0.tgz";
5785 path = fetchurl {
5786 name = "is_number___is_number_4.0.0.tgz";
5787 url = "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz";
5788 sha1 = "0026e37f5454d73e356dfe6564699867c6a7f0ff";
5789 };
5790 }
5791
5792 {
5793 name = "is_obj___is_obj_1.0.1.tgz"; 6171 name = "is_obj___is_obj_1.0.1.tgz";
5794 path = fetchurl { 6172 path = fetchurl {
5795 name = "is_obj___is_obj_1.0.1.tgz"; 6173 name = "is_obj___is_obj_1.0.1.tgz";
@@ -5799,29 +6177,29 @@
5799 } 6177 }
5800 6178
5801 { 6179 {
5802 name = "is_path_cwd___is_path_cwd_1.0.0.tgz"; 6180 name = "is_path_cwd___is_path_cwd_2.1.0.tgz";
5803 path = fetchurl { 6181 path = fetchurl {
5804 name = "is_path_cwd___is_path_cwd_1.0.0.tgz"; 6182 name = "is_path_cwd___is_path_cwd_2.1.0.tgz";
5805 url = "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz"; 6183 url = "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.1.0.tgz";
5806 sha1 = "d225ec23132e89edd38fda767472e62e65f1106d"; 6184 sha1 = "2e0c7e463ff5b7a0eb60852d851a6809347a124c";
5807 }; 6185 };
5808 } 6186 }
5809 6187
5810 { 6188 {
5811 name = "is_path_in_cwd___is_path_in_cwd_1.0.1.tgz"; 6189 name = "is_path_in_cwd___is_path_in_cwd_2.1.0.tgz";
5812 path = fetchurl { 6190 path = fetchurl {
5813 name = "is_path_in_cwd___is_path_in_cwd_1.0.1.tgz"; 6191 name = "is_path_in_cwd___is_path_in_cwd_2.1.0.tgz";
5814 url = "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz"; 6192 url = "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz";
5815 sha1 = "5ac48b345ef675339bd6c7a48a912110b241cf52"; 6193 sha1 = "bfe2dca26c69f397265a4009963602935a053acb";
5816 }; 6194 };
5817 } 6195 }
5818 6196
5819 { 6197 {
5820 name = "is_path_inside___is_path_inside_1.0.1.tgz"; 6198 name = "is_path_inside___is_path_inside_2.1.0.tgz";
5821 path = fetchurl { 6199 path = fetchurl {
5822 name = "is_path_inside___is_path_inside_1.0.1.tgz"; 6200 name = "is_path_inside___is_path_inside_2.1.0.tgz";
5823 url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz"; 6201 url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz";
5824 sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; 6202 sha1 = "7c9810587d659a40d27bcdb4d5616eab059494b2";
5825 }; 6203 };
5826 } 6204 }
5827 6205
@@ -5835,29 +6213,20 @@
5835 } 6213 }
5836 6214
5837 { 6215 {
5838 name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; 6216 name = "is_promise___is_promise_2.1.0.tgz";
5839 path = fetchurl { 6217 path = fetchurl {
5840 name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; 6218 name = "is_promise___is_promise_2.1.0.tgz";
5841 url = "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; 6219 url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz";
5842 sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; 6220 sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa";
5843 }; 6221 };
5844 } 6222 }
5845 6223
5846 { 6224 {
5847 name = "is_primitive___is_primitive_2.0.0.tgz"; 6225 name = "is_property___is_property_1.0.2.tgz";
5848 path = fetchurl { 6226 path = fetchurl {
5849 name = "is_primitive___is_primitive_2.0.0.tgz"; 6227 name = "is_property___is_property_1.0.2.tgz";
5850 url = "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz"; 6228 url = "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz";
5851 sha1 = "207bab91638499c07b2adf240a41a87210034575"; 6229 sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
5852 };
5853 }
5854
5855 {
5856 name = "is_promise___is_promise_2.1.0.tgz";
5857 path = fetchurl {
5858 name = "is_promise___is_promise_2.1.0.tgz";
5859 url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz";
5860 sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa";
5861 }; 6230 };
5862 } 6231 }
5863 6232
@@ -5934,15 +6303,6 @@
5934 } 6303 }
5935 6304
5936 { 6305 {
5937 name = "is_utf8___is_utf8_0.2.1.tgz";
5938 path = fetchurl {
5939 name = "is_utf8___is_utf8_0.2.1.tgz";
5940 url = "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz";
5941 sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
5942 };
5943 }
5944
5945 {
5946 name = "is_windows___is_windows_1.0.2.tgz"; 6306 name = "is_windows___is_windows_1.0.2.tgz";
5947 path = fetchurl { 6307 path = fetchurl {
5948 name = "is_windows___is_windows_1.0.2.tgz"; 6308 name = "is_windows___is_windows_1.0.2.tgz";
@@ -6024,308 +6384,299 @@
6024 } 6384 }
6025 6385
6026 { 6386 {
6027 name = "istanbul_api___istanbul_api_1.3.7.tgz"; 6387 name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
6028 path = fetchurl { 6388 path = fetchurl {
6029 name = "istanbul_api___istanbul_api_1.3.7.tgz"; 6389 name = "istanbul_lib_coverage___istanbul_lib_coverage_2.0.3.tgz";
6030 url = "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-1.3.7.tgz"; 6390 url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz";
6031 sha1 = "a86c770d2b03e11e3f778cd7aedd82d2722092aa"; 6391 sha1 = "0b891e5ad42312c2b9488554f603795f9a2211ba";
6032 }; 6392 };
6033 } 6393 }
6034 6394
6035 { 6395 {
6036 name = "istanbul_lib_coverage___istanbul_lib_coverage_1.2.1.tgz"; 6396 name = "istanbul_lib_instrument___istanbul_lib_instrument_3.1.0.tgz";
6037 path = fetchurl { 6397 path = fetchurl {
6038 name = "istanbul_lib_coverage___istanbul_lib_coverage_1.2.1.tgz"; 6398 name = "istanbul_lib_instrument___istanbul_lib_instrument_3.1.0.tgz";
6039 url = "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz"; 6399 url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz";
6040 sha1 = "ccf7edcd0a0bb9b8f729feeb0930470f9af664f0"; 6400 sha1 = "a2b5484a7d445f1f311e93190813fa56dfb62971";
6041 }; 6401 };
6042 } 6402 }
6043 6403
6044 { 6404 {
6045 name = "istanbul_lib_hook___istanbul_lib_hook_1.2.2.tgz"; 6405 name = "istanbul_lib_report___istanbul_lib_report_2.0.4.tgz";
6046 path = fetchurl { 6406 path = fetchurl {
6047 name = "istanbul_lib_hook___istanbul_lib_hook_1.2.2.tgz"; 6407 name = "istanbul_lib_report___istanbul_lib_report_2.0.4.tgz";
6048 url = "https://registry.yarnpkg.com/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz"; 6408 url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.4.tgz";
6049 sha1 = "bc6bf07f12a641fbf1c85391d0daa8f0aea6bf86"; 6409 sha1 = "bfd324ee0c04f59119cb4f07dab157d09f24d7e4";
6050 }; 6410 };
6051 } 6411 }
6052 6412
6053 { 6413 {
6054 name = "istanbul_lib_instrument___istanbul_lib_instrument_1.10.2.tgz"; 6414 name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.2.tgz";
6055 path = fetchurl { 6415 path = fetchurl {
6056 name = "istanbul_lib_instrument___istanbul_lib_instrument_1.10.2.tgz"; 6416 name = "istanbul_lib_source_maps___istanbul_lib_source_maps_3.0.2.tgz";
6057 url = "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz"; 6417 url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.2.tgz";
6058 sha1 = "1f55ed10ac3c47f2bdddd5307935126754d0a9ca"; 6418 sha1 = "f1e817229a9146e8424a28e5d69ba220fda34156";
6059 }; 6419 };
6060 } 6420 }
6061 6421
6062 { 6422 {
6063 name = "istanbul_lib_report___istanbul_lib_report_1.1.5.tgz"; 6423 name = "istanbul_reports___istanbul_reports_2.1.1.tgz";
6064 path = fetchurl { 6424 path = fetchurl {
6065 name = "istanbul_lib_report___istanbul_lib_report_1.1.5.tgz"; 6425 name = "istanbul_reports___istanbul_reports_2.1.1.tgz";
6066 url = "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz"; 6426 url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz";
6067 sha1 = "f2a657fc6282f96170aaf281eb30a458f7f4170c"; 6427 sha1 = "72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9";
6068 }; 6428 };
6069 } 6429 }
6070 6430
6071 { 6431 {
6072 name = "istanbul_lib_source_maps___istanbul_lib_source_maps_1.2.6.tgz"; 6432 name = "jest_changed_files___jest_changed_files_24.8.0.tgz";
6073 path = fetchurl { 6433 path = fetchurl {
6074 name = "istanbul_lib_source_maps___istanbul_lib_source_maps_1.2.6.tgz"; 6434 name = "jest_changed_files___jest_changed_files_24.8.0.tgz";
6075 url = "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz"; 6435 url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.8.0.tgz";
6076 sha1 = "37b9ff661580f8fca11232752ee42e08c6675d8f"; 6436 sha1 = "7e7eb21cf687587a85e50f3d249d1327e15b157b";
6077 }; 6437 };
6078 } 6438 }
6079 6439
6080 { 6440 {
6081 name = "istanbul_reports___istanbul_reports_1.5.1.tgz"; 6441 name = "jest_cli___jest_cli_24.8.0.tgz";
6082 path = fetchurl { 6442 path = fetchurl {
6083 name = "istanbul_reports___istanbul_reports_1.5.1.tgz"; 6443 name = "jest_cli___jest_cli_24.8.0.tgz";
6084 url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-1.5.1.tgz"; 6444 url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.8.0.tgz";
6085 sha1 = "97e4dbf3b515e8c484caea15d6524eebd3ff4e1a"; 6445 sha1 = "b075ac914492ed114fa338ade7362a301693e989";
6086 }; 6446 };
6087 } 6447 }
6088 6448
6089 { 6449 {
6090 name = "jest_changed_files___jest_changed_files_23.4.2.tgz"; 6450 name = "jest_config___jest_config_24.8.0.tgz";
6091 path = fetchurl { 6451 path = fetchurl {
6092 name = "jest_changed_files___jest_changed_files_23.4.2.tgz"; 6452 name = "jest_config___jest_config_24.8.0.tgz";
6093 url = "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-23.4.2.tgz"; 6453 url = "https://registry.yarnpkg.com/jest-config/-/jest-config-24.8.0.tgz";
6094 sha1 = "1eed688370cd5eebafe4ae93d34bb3b64968fe83"; 6454 sha1 = "77db3d265a6f726294687cbbccc36f8a76ee0f4f";
6095 }; 6455 };
6096 } 6456 }
6097 6457
6098 { 6458 {
6099 name = "jest_cli___jest_cli_23.6.0.tgz"; 6459 name = "jest_diff___jest_diff_24.8.0.tgz";
6100 path = fetchurl { 6460 path = fetchurl {
6101 name = "jest_cli___jest_cli_23.6.0.tgz"; 6461 name = "jest_diff___jest_diff_24.8.0.tgz";
6102 url = "https://registry.yarnpkg.com/jest-cli/-/jest-cli-23.6.0.tgz"; 6462 url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.8.0.tgz";
6103 sha1 = "61ab917744338f443ef2baa282ddffdd658a5da4"; 6463 sha1 = "146435e7d1e3ffdf293d53ff97e193f1d1546172";
6104 }; 6464 };
6105 } 6465 }
6106 6466
6107 { 6467 {
6108 name = "jest_config___jest_config_23.6.0.tgz"; 6468 name = "jest_docblock___jest_docblock_24.3.0.tgz";
6109 path = fetchurl { 6469 path = fetchurl {
6110 name = "jest_config___jest_config_23.6.0.tgz"; 6470 name = "jest_docblock___jest_docblock_24.3.0.tgz";
6111 url = "https://registry.yarnpkg.com/jest-config/-/jest-config-23.6.0.tgz"; 6471 url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.3.0.tgz";
6112 sha1 = "f82546a90ade2d8c7026fbf6ac5207fc22f8eb1d"; 6472 sha1 = "b9c32dac70f72e4464520d2ba4aec02ab14db5dd";
6113 }; 6473 };
6114 } 6474 }
6115 6475
6116 { 6476 {
6117 name = "jest_diff___jest_diff_23.6.0.tgz"; 6477 name = "jest_each___jest_each_24.8.0.tgz";
6118 path = fetchurl { 6478 path = fetchurl {
6119 name = "jest_diff___jest_diff_23.6.0.tgz"; 6479 name = "jest_each___jest_each_24.8.0.tgz";
6120 url = "https://registry.yarnpkg.com/jest-diff/-/jest-diff-23.6.0.tgz"; 6480 url = "https://registry.yarnpkg.com/jest-each/-/jest-each-24.8.0.tgz";
6121 sha1 = "1500f3f16e850bb3d71233408089be099f610c7d"; 6481 sha1 = "a05fd2bf94ddc0b1da66c6d13ec2457f35e52775";
6122 }; 6482 };
6123 } 6483 }
6124 6484
6125 { 6485 {
6126 name = "jest_docblock___jest_docblock_23.2.0.tgz"; 6486 name = "jest_environment_jsdom___jest_environment_jsdom_24.8.0.tgz";
6127 path = fetchurl { 6487 path = fetchurl {
6128 name = "jest_docblock___jest_docblock_23.2.0.tgz"; 6488 name = "jest_environment_jsdom___jest_environment_jsdom_24.8.0.tgz";
6129 url = "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-23.2.0.tgz"; 6489 url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz";
6130 sha1 = "f085e1f18548d99fdd69b20207e6fd55d91383a7"; 6490 sha1 = "300f6949a146cabe1c9357ad9e9ecf9f43f38857";
6131 }; 6491 };
6132 } 6492 }
6133 6493
6134 { 6494 {
6135 name = "jest_each___jest_each_23.6.0.tgz"; 6495 name = "jest_environment_node___jest_environment_node_24.8.0.tgz";
6136 path = fetchurl { 6496 path = fetchurl {
6137 name = "jest_each___jest_each_23.6.0.tgz"; 6497 name = "jest_environment_node___jest_environment_node_24.8.0.tgz";
6138 url = "https://registry.yarnpkg.com/jest-each/-/jest-each-23.6.0.tgz"; 6498 url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.8.0.tgz";
6139 sha1 = "ba0c3a82a8054387016139c733a05242d3d71575"; 6499 sha1 = "d3f726ba8bc53087a60e7a84ca08883a4c892231";
6140 }; 6500 };
6141 } 6501 }
6142 6502
6143 { 6503 {
6144 name = "jest_environment_jsdom___jest_environment_jsdom_23.4.0.tgz"; 6504 name = "jest_get_type___jest_get_type_24.8.0.tgz";
6145 path = fetchurl { 6505 path = fetchurl {
6146 name = "jest_environment_jsdom___jest_environment_jsdom_23.4.0.tgz"; 6506 name = "jest_get_type___jest_get_type_24.8.0.tgz";
6147 url = "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-23.4.0.tgz"; 6507 url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.8.0.tgz";
6148 sha1 = "056a7952b3fea513ac62a140a2c368c79d9e6023"; 6508 sha1 = "a7440de30b651f5a70ea3ed7ff073a32dfe646fc";
6149 }; 6509 };
6150 } 6510 }
6151 6511
6152 { 6512 {
6153 name = "jest_environment_node___jest_environment_node_23.4.0.tgz"; 6513 name = "jest_haste_map___jest_haste_map_24.8.0.tgz";
6154 path = fetchurl { 6514 path = fetchurl {
6155 name = "jest_environment_node___jest_environment_node_23.4.0.tgz"; 6515 name = "jest_haste_map___jest_haste_map_24.8.0.tgz";
6156 url = "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-23.4.0.tgz"; 6516 url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.8.0.tgz";
6157 sha1 = "57e80ed0841dea303167cce8cd79521debafde10"; 6517 sha1 = "51794182d877b3ddfd6e6d23920e3fe72f305800";
6158 }; 6518 };
6159 } 6519 }
6160 6520
6161 { 6521 {
6162 name = "jest_get_type___jest_get_type_22.4.3.tgz"; 6522 name = "jest_jasmine2___jest_jasmine2_24.8.0.tgz";
6163 path = fetchurl { 6523 path = fetchurl {
6164 name = "jest_get_type___jest_get_type_22.4.3.tgz"; 6524 name = "jest_jasmine2___jest_jasmine2_24.8.0.tgz";
6165 url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz"; 6525 url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz";
6166 sha1 = "e3a8504d8479342dd4420236b322869f18900ce4"; 6526 sha1 = "a9c7e14c83dd77d8b15e820549ce8987cc8cd898";
6167 }; 6527 };
6168 } 6528 }
6169 6529
6170 { 6530 {
6171 name = "jest_haste_map___jest_haste_map_23.6.0.tgz"; 6531 name = "jest_leak_detector___jest_leak_detector_24.8.0.tgz";
6172 path = fetchurl { 6532 path = fetchurl {
6173 name = "jest_haste_map___jest_haste_map_23.6.0.tgz"; 6533 name = "jest_leak_detector___jest_leak_detector_24.8.0.tgz";
6174 url = "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-23.6.0.tgz"; 6534 url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz";
6175 sha1 = "2e3eb997814ca696d62afdb3f2529f5bbc935e16"; 6535 sha1 = "c0086384e1f650c2d8348095df769f29b48e6980";
6176 }; 6536 };
6177 } 6537 }
6178 6538
6179 { 6539 {
6180 name = "jest_jasmine2___jest_jasmine2_23.6.0.tgz"; 6540 name = "jest_matcher_utils___jest_matcher_utils_24.8.0.tgz";
6181 path = fetchurl { 6541 path = fetchurl {
6182 name = "jest_jasmine2___jest_jasmine2_23.6.0.tgz"; 6542 name = "jest_matcher_utils___jest_matcher_utils_24.8.0.tgz";
6183 url = "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-23.6.0.tgz"; 6543 url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz";
6184 sha1 = "840e937f848a6c8638df24360ab869cc718592e0"; 6544 sha1 = "2bce42204c9af12bde46f83dc839efe8be832495";
6185 }; 6545 };
6186 } 6546 }
6187 6547
6188 { 6548 {
6189 name = "jest_leak_detector___jest_leak_detector_23.6.0.tgz"; 6549 name = "jest_message_util___jest_message_util_24.8.0.tgz";
6190 path = fetchurl { 6550 path = fetchurl {
6191 name = "jest_leak_detector___jest_leak_detector_23.6.0.tgz"; 6551 name = "jest_message_util___jest_message_util_24.8.0.tgz";
6192 url = "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-23.6.0.tgz"; 6552 url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.8.0.tgz";
6193 sha1 = "e4230fd42cf381a1a1971237ad56897de7e171de"; 6553 sha1 = "0d6891e72a4beacc0292b638685df42e28d6218b";
6194 }; 6554 };
6195 } 6555 }
6196 6556
6197 { 6557 {
6198 name = "jest_matcher_utils___jest_matcher_utils_23.6.0.tgz"; 6558 name = "jest_mock___jest_mock_24.8.0.tgz";
6199 path = fetchurl { 6559 path = fetchurl {
6200 name = "jest_matcher_utils___jest_matcher_utils_23.6.0.tgz"; 6560 name = "jest_mock___jest_mock_24.8.0.tgz";
6201 url = "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-23.6.0.tgz"; 6561 url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.8.0.tgz";
6202 sha1 = "726bcea0c5294261a7417afb6da3186b4b8cac80"; 6562 sha1 = "2f9d14d37699e863f1febf4e4d5a33b7fdbbde56";
6203 }; 6563 };
6204 } 6564 }
6205 6565
6206 { 6566 {
6207 name = "jest_message_util___jest_message_util_23.4.0.tgz"; 6567 name = "jest_pnp_resolver___jest_pnp_resolver_1.2.1.tgz";
6208 path = fetchurl { 6568 path = fetchurl {
6209 name = "jest_message_util___jest_message_util_23.4.0.tgz"; 6569 name = "jest_pnp_resolver___jest_pnp_resolver_1.2.1.tgz";
6210 url = "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-23.4.0.tgz"; 6570 url = "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz";
6211 sha1 = "17610c50942349508d01a3d1e0bda2c079086a9f"; 6571 sha1 = "ecdae604c077a7fbc70defb6d517c3c1c898923a";
6212 }; 6572 };
6213 } 6573 }
6214 6574
6215 { 6575 {
6216 name = "jest_mock___jest_mock_23.2.0.tgz"; 6576 name = "jest_regex_util___jest_regex_util_24.3.0.tgz";
6217 path = fetchurl { 6577 path = fetchurl {
6218 name = "jest_mock___jest_mock_23.2.0.tgz"; 6578 name = "jest_regex_util___jest_regex_util_24.3.0.tgz";
6219 url = "https://registry.yarnpkg.com/jest-mock/-/jest-mock-23.2.0.tgz"; 6579 url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.3.0.tgz";
6220 sha1 = "ad1c60f29e8719d47c26e1138098b6d18b261134"; 6580 sha1 = "d5a65f60be1ae3e310d5214a0307581995227b36";
6221 }; 6581 };
6222 } 6582 }
6223 6583
6224 { 6584 {
6225 name = "jest_regex_util___jest_regex_util_23.3.0.tgz"; 6585 name = "jest_resolve_dependencies___jest_resolve_dependencies_24.8.0.tgz";
6226 path = fetchurl { 6586 path = fetchurl {
6227 name = "jest_regex_util___jest_regex_util_23.3.0.tgz"; 6587 name = "jest_resolve_dependencies___jest_resolve_dependencies_24.8.0.tgz";
6228 url = "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-23.3.0.tgz"; 6588 url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz";
6229 sha1 = "5f86729547c2785c4002ceaa8f849fe8ca471bc5"; 6589 sha1 = "19eec3241f2045d3f990dba331d0d7526acff8e0";
6230 }; 6590 };
6231 } 6591 }
6232 6592
6233 { 6593 {
6234 name = "jest_resolve_dependencies___jest_resolve_dependencies_23.6.0.tgz"; 6594 name = "jest_resolve___jest_resolve_24.8.0.tgz";
6235 path = fetchurl { 6595 path = fetchurl {
6236 name = "jest_resolve_dependencies___jest_resolve_dependencies_23.6.0.tgz"; 6596 name = "jest_resolve___jest_resolve_24.8.0.tgz";
6237 url = "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-23.6.0.tgz"; 6597 url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.8.0.tgz";
6238 sha1 = "b4526af24c8540d9a3fab102c15081cf509b723d"; 6598 sha1 = "84b8e5408c1f6a11539793e2b5feb1b6e722439f";
6239 }; 6599 };
6240 } 6600 }
6241 6601
6242 { 6602 {
6243 name = "jest_resolve___jest_resolve_23.6.0.tgz"; 6603 name = "jest_runner___jest_runner_24.8.0.tgz";
6244 path = fetchurl { 6604 path = fetchurl {
6245 name = "jest_resolve___jest_resolve_23.6.0.tgz"; 6605 name = "jest_runner___jest_runner_24.8.0.tgz";
6246 url = "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-23.6.0.tgz"; 6606 url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.8.0.tgz";
6247 sha1 = "cf1d1a24ce7ee7b23d661c33ba2150f3aebfa0ae"; 6607 sha1 = "4f9ae07b767db27b740d7deffad0cf67ccb4c5bb";
6248 }; 6608 };
6249 } 6609 }
6250 6610
6251 { 6611 {
6252 name = "jest_runner___jest_runner_23.6.0.tgz"; 6612 name = "jest_runtime___jest_runtime_24.8.0.tgz";
6253 path = fetchurl { 6613 path = fetchurl {
6254 name = "jest_runner___jest_runner_23.6.0.tgz"; 6614 name = "jest_runtime___jest_runtime_24.8.0.tgz";
6255 url = "https://registry.yarnpkg.com/jest-runner/-/jest-runner-23.6.0.tgz"; 6615 url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.8.0.tgz";
6256 sha1 = "3894bd219ffc3f3cb94dc48a4170a2e6f23a5a38"; 6616 sha1 = "05f94d5b05c21f6dc54e427cd2e4980923350620";
6257 }; 6617 };
6258 } 6618 }
6259 6619
6260 { 6620 {
6261 name = "jest_runtime___jest_runtime_23.6.0.tgz"; 6621 name = "jest_serializer___jest_serializer_24.4.0.tgz";
6262 path = fetchurl { 6622 path = fetchurl {
6263 name = "jest_runtime___jest_runtime_23.6.0.tgz"; 6623 name = "jest_serializer___jest_serializer_24.4.0.tgz";
6264 url = "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-23.6.0.tgz"; 6624 url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.4.0.tgz";
6265 sha1 = "059e58c8ab445917cd0e0d84ac2ba68de8f23082"; 6625 sha1 = "f70c5918c8ea9235ccb1276d232e459080588db3";
6266 }; 6626 };
6267 } 6627 }
6268 6628
6269 { 6629 {
6270 name = "jest_serializer___jest_serializer_23.0.1.tgz"; 6630 name = "jest_snapshot___jest_snapshot_24.8.0.tgz";
6271 path = fetchurl { 6631 path = fetchurl {
6272 name = "jest_serializer___jest_serializer_23.0.1.tgz"; 6632 name = "jest_snapshot___jest_snapshot_24.8.0.tgz";
6273 url = "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-23.0.1.tgz"; 6633 url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.8.0.tgz";
6274 sha1 = "a3776aeb311e90fe83fab9e533e85102bd164165"; 6634 sha1 = "3bec6a59da2ff7bc7d097a853fb67f9d415cb7c6";
6275 }; 6635 };
6276 } 6636 }
6277 6637
6278 { 6638 {
6279 name = "jest_snapshot___jest_snapshot_23.6.0.tgz"; 6639 name = "jest_util___jest_util_24.8.0.tgz";
6280 path = fetchurl { 6640 path = fetchurl {
6281 name = "jest_snapshot___jest_snapshot_23.6.0.tgz"; 6641 name = "jest_util___jest_util_24.8.0.tgz";
6282 url = "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-23.6.0.tgz"; 6642 url = "https://registry.yarnpkg.com/jest-util/-/jest-util-24.8.0.tgz";
6283 sha1 = "f9c2625d1b18acda01ec2d2b826c0ce58a5aa17a"; 6643 sha1 = "41f0e945da11df44cc76d64ffb915d0716f46cd1";
6284 }; 6644 };
6285 } 6645 }
6286 6646
6287 { 6647 {
6288 name = "jest_util___jest_util_23.4.0.tgz"; 6648 name = "jest_validate___jest_validate_24.8.0.tgz";
6289 path = fetchurl { 6649 path = fetchurl {
6290 name = "jest_util___jest_util_23.4.0.tgz"; 6650 name = "jest_validate___jest_validate_24.8.0.tgz";
6291 url = "https://registry.yarnpkg.com/jest-util/-/jest-util-23.4.0.tgz"; 6651 url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.8.0.tgz";
6292 sha1 = "4d063cb927baf0a23831ff61bec2cbbf49793561"; 6652 sha1 = "624c41533e6dfe356ffadc6e2423a35c2d3b4849";
6293 }; 6653 };
6294 } 6654 }
6295 6655
6296 { 6656 {
6297 name = "jest_validate___jest_validate_23.6.0.tgz"; 6657 name = "jest_watcher___jest_watcher_24.8.0.tgz";
6298 path = fetchurl { 6658 path = fetchurl {
6299 name = "jest_validate___jest_validate_23.6.0.tgz"; 6659 name = "jest_watcher___jest_watcher_24.8.0.tgz";
6300 url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz"; 6660 url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.8.0.tgz";
6301 sha1 = "36761f99d1ed33fcd425b4e4c5595d62b6597474"; 6661 sha1 = "58d49915ceddd2de85e238f6213cef1c93715de4";
6302 }; 6662 };
6303 } 6663 }
6304 6664
6305 { 6665 {
6306 name = "jest_watcher___jest_watcher_23.4.0.tgz"; 6666 name = "jest_worker___jest_worker_24.6.0.tgz";
6307 path = fetchurl { 6667 path = fetchurl {
6308 name = "jest_watcher___jest_watcher_23.4.0.tgz"; 6668 name = "jest_worker___jest_worker_24.6.0.tgz";
6309 url = "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-23.4.0.tgz"; 6669 url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz";
6310 sha1 = "d2e28ce74f8dad6c6afc922b92cabef6ed05c91c"; 6670 sha1 = "7f81ceae34b7cde0c9827a6980c35b7cdc0161b3";
6311 }; 6671 };
6312 } 6672 }
6313 6673
6314 { 6674 {
6315 name = "jest_worker___jest_worker_23.2.0.tgz"; 6675 name = "jest___jest_24.8.0.tgz";
6316 path = fetchurl { 6676 path = fetchurl {
6317 name = "jest_worker___jest_worker_23.2.0.tgz"; 6677 name = "jest___jest_24.8.0.tgz";
6318 url = "https://registry.yarnpkg.com/jest-worker/-/jest-worker-23.2.0.tgz"; 6678 url = "https://registry.yarnpkg.com/jest/-/jest-24.8.0.tgz";
6319 sha1 = "faf706a8da36fae60eb26957257fa7b5d8ea02b9"; 6679 sha1 = "d5dff1984d0d1002196e9b7f12f75af1b2809081";
6320 };
6321 }
6322
6323 {
6324 name = "jest___jest_23.6.0.tgz";
6325 path = fetchurl {
6326 name = "jest___jest_23.6.0.tgz";
6327 url = "https://registry.yarnpkg.com/jest/-/jest-23.6.0.tgz";
6328 sha1 = "ad5835e923ebf6e19e7a1d7529a432edfee7813d";
6329 }; 6680 };
6330 } 6681 }
6331 6682
@@ -6339,11 +6690,11 @@
6339 } 6690 }
6340 6691
6341 { 6692 {
6342 name = "js_levenshtein___js_levenshtein_1.1.4.tgz"; 6693 name = "js_levenshtein___js_levenshtein_1.1.6.tgz";
6343 path = fetchurl { 6694 path = fetchurl {
6344 name = "js_levenshtein___js_levenshtein_1.1.4.tgz"; 6695 name = "js_levenshtein___js_levenshtein_1.1.6.tgz";
6345 url = "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.4.tgz"; 6696 url = "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz";
6346 sha1 = "3a56e3cbf589ca0081eb22cd9ba0b1290a16d26e"; 6697 sha1 = "c6cee58eb3550372df8deb85fad5ce66ce01d59d";
6347 }; 6698 };
6348 } 6699 }
6349 6700
@@ -6366,20 +6717,11 @@
6366 } 6717 }
6367 6718
6368 { 6719 {
6369 name = "js_tokens___js_tokens_3.0.2.tgz"; 6720 name = "js_yaml___js_yaml_3.13.1.tgz";
6370 path = fetchurl { 6721 path = fetchurl {
6371 name = "js_tokens___js_tokens_3.0.2.tgz"; 6722 name = "js_yaml___js_yaml_3.13.1.tgz";
6372 url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz"; 6723 url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz";
6373 sha1 = "9866df395102130e38f7f996bceb65443209c25b"; 6724 sha1 = "aff151b30bfdfa8e49e05da22e7415e9dfa37847";
6374 };
6375 }
6376
6377 {
6378 name = "js_yaml___js_yaml_3.12.0.tgz";
6379 path = fetchurl {
6380 name = "js_yaml___js_yaml_3.12.0.tgz";
6381 url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz";
6382 sha1 = "eaed656ec8344f10f527c6bfa1b6e2244de167d1";
6383 }; 6725 };
6384 } 6726 }
6385 6727
@@ -6402,15 +6744,6 @@
6402 } 6744 }
6403 6745
6404 { 6746 {
6405 name = "jsesc___jsesc_1.3.0.tgz";
6406 path = fetchurl {
6407 name = "jsesc___jsesc_1.3.0.tgz";
6408 url = "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz";
6409 sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
6410 };
6411 }
6412
6413 {
6414 name = "jsesc___jsesc_2.5.2.tgz"; 6747 name = "jsesc___jsesc_2.5.2.tgz";
6415 path = fetchurl { 6748 path = fetchurl {
6416 name = "jsesc___jsesc_2.5.2.tgz"; 6749 name = "jsesc___jsesc_2.5.2.tgz";
@@ -6519,6 +6852,24 @@
6519 } 6852 }
6520 6853
6521 { 6854 {
6855 name = "jsonfile___jsonfile_3.0.1.tgz";
6856 path = fetchurl {
6857 name = "jsonfile___jsonfile_3.0.1.tgz";
6858 url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz";
6859 sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66";
6860 };
6861 }
6862
6863 {
6864 name = "jsonfile___jsonfile_4.0.0.tgz";
6865 path = fetchurl {
6866 name = "jsonfile___jsonfile_4.0.0.tgz";
6867 url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz";
6868 sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
6869 };
6870 }
6871
6872 {
6522 name = "jsonify___jsonify_0.0.0.tgz"; 6873 name = "jsonify___jsonify_0.0.0.tgz";
6523 path = fetchurl { 6874 path = fetchurl {
6524 name = "jsonify___jsonify_0.0.0.tgz"; 6875 name = "jsonify___jsonify_0.0.0.tgz";
@@ -6528,6 +6879,15 @@
6528 } 6879 }
6529 6880
6530 { 6881 {
6882 name = "jsonpointer___jsonpointer_4.0.1.tgz";
6883 path = fetchurl {
6884 name = "jsonpointer___jsonpointer_4.0.1.tgz";
6885 url = "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz";
6886 sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9";
6887 };
6888 }
6889
6890 {
6531 name = "jsprim___jsprim_1.4.1.tgz"; 6891 name = "jsprim___jsprim_1.4.1.tgz";
6532 path = fetchurl { 6892 path = fetchurl {
6533 name = "jsprim___jsprim_1.4.1.tgz"; 6893 name = "jsprim___jsprim_1.4.1.tgz";
@@ -6600,11 +6960,11 @@
6600 } 6960 }
6601 6961
6602 { 6962 {
6603 name = "kleur___kleur_2.0.2.tgz"; 6963 name = "kleur___kleur_3.0.2.tgz";
6604 path = fetchurl { 6964 path = fetchurl {
6605 name = "kleur___kleur_2.0.2.tgz"; 6965 name = "kleur___kleur_3.0.2.tgz";
6606 url = "https://registry.yarnpkg.com/kleur/-/kleur-2.0.2.tgz"; 6966 url = "https://registry.yarnpkg.com/kleur/-/kleur-3.0.2.tgz";
6607 sha1 = "b704f4944d95e255d038f0cb05fb8a602c55a300"; 6967 sha1 = "83c7ec858a41098b613d5998a7b653962b504f68";
6608 }; 6968 };
6609 } 6969 }
6610 6970
@@ -6618,11 +6978,11 @@
6618 } 6978 }
6619 6979
6620 { 6980 {
6621 name = "lcid___lcid_1.0.0.tgz"; 6981 name = "known_css_properties___known_css_properties_0.3.0.tgz";
6622 path = fetchurl { 6982 path = fetchurl {
6623 name = "lcid___lcid_1.0.0.tgz"; 6983 name = "known_css_properties___known_css_properties_0.3.0.tgz";
6624 url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz"; 6984 url = "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.3.0.tgz";
6625 sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; 6985 sha1 = "a3d135bbfc60ee8c6eacf2f7e7e6f2d4755e49a4";
6626 }; 6986 };
6627 } 6987 }
6628 6988
@@ -6663,20 +7023,20 @@
6663 } 7023 }
6664 7024
6665 { 7025 {
6666 name = "load_json_file___load_json_file_1.1.0.tgz"; 7026 name = "load_json_file___load_json_file_2.0.0.tgz";
6667 path = fetchurl { 7027 path = fetchurl {
6668 name = "load_json_file___load_json_file_1.1.0.tgz"; 7028 name = "load_json_file___load_json_file_2.0.0.tgz";
6669 url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz"; 7029 url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz";
6670 sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; 7030 sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8";
6671 }; 7031 };
6672 } 7032 }
6673 7033
6674 { 7034 {
6675 name = "load_json_file___load_json_file_2.0.0.tgz"; 7035 name = "load_json_file___load_json_file_4.0.0.tgz";
6676 path = fetchurl { 7036 path = fetchurl {
6677 name = "load_json_file___load_json_file_2.0.0.tgz"; 7037 name = "load_json_file___load_json_file_4.0.0.tgz";
6678 url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz"; 7038 url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz";
6679 sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; 7039 sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b";
6680 }; 7040 };
6681 } 7041 }
6682 7042
@@ -6726,11 +7086,11 @@
6726 } 7086 }
6727 7087
6728 { 7088 {
6729 name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; 7089 name = "lodash.capitalize___lodash.capitalize_4.2.1.tgz";
6730 path = fetchurl { 7090 path = fetchurl {
6731 name = "lodash.debounce___lodash.debounce_4.0.8.tgz"; 7091 name = "lodash.capitalize___lodash.capitalize_4.2.1.tgz";
6732 url = "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 7092 url = "https://registry.yarnpkg.com/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz";
6733 sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 7093 sha1 = "f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9";
6734 }; 7094 };
6735 } 7095 }
6736 7096
@@ -6807,6 +7167,15 @@
6807 } 7167 }
6808 7168
6809 { 7169 {
7170 name = "lodash.kebabcase___lodash.kebabcase_4.1.1.tgz";
7171 path = fetchurl {
7172 name = "lodash.kebabcase___lodash.kebabcase_4.1.1.tgz";
7173 url = "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz";
7174 sha1 = "8489b1cb0d29ff88195cceca448ff6d6cc295c36";
7175 };
7176 }
7177
7178 {
6810 name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; 7179 name = "lodash.memoize___lodash.memoize_4.1.2.tgz";
6811 path = fetchurl { 7180 path = fetchurl {
6812 name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; 7181 name = "lodash.memoize___lodash.memoize_4.1.2.tgz";
@@ -6852,11 +7221,11 @@
6852 } 7221 }
6853 7222
6854 { 7223 {
6855 name = "loglevel___loglevel_1.6.1.tgz"; 7224 name = "loglevel___loglevel_1.6.2.tgz";
6856 path = fetchurl { 7225 path = fetchurl {
6857 name = "loglevel___loglevel_1.6.1.tgz"; 7226 name = "loglevel___loglevel_1.6.2.tgz";
6858 url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz"; 7227 url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.2.tgz";
6859 sha1 = "e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"; 7228 sha1 = "668c77948a03dbd22502a3513ace1f62a80cc372";
6860 }; 7229 };
6861 } 7230 }
6862 7231
@@ -6870,15 +7239,6 @@
6870 } 7239 }
6871 7240
6872 { 7241 {
6873 name = "lru_cache___lru_cache_4.1.5.tgz";
6874 path = fetchurl {
6875 name = "lru_cache___lru_cache_4.1.5.tgz";
6876 url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz";
6877 sha1 = "8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd";
6878 };
6879 }
6880
6881 {
6882 name = "lru_cache___lru_cache_5.1.1.tgz"; 7242 name = "lru_cache___lru_cache_5.1.1.tgz";
6883 path = fetchurl { 7243 path = fetchurl {
6884 name = "lru_cache___lru_cache_5.1.1.tgz"; 7244 name = "lru_cache___lru_cache_5.1.1.tgz";
@@ -6906,6 +7266,15 @@
6906 } 7266 }
6907 7267
6908 { 7268 {
7269 name = "mamacro___mamacro_0.0.3.tgz";
7270 path = fetchurl {
7271 name = "mamacro___mamacro_0.0.3.tgz";
7272 url = "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz";
7273 sha1 = "ad2c9576197c9f1abf308d0787865bd975a3f3e4";
7274 };
7275 }
7276
7277 {
6909 name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; 7278 name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz";
6910 path = fetchurl { 7279 path = fetchurl {
6911 name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; 7280 name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz";
@@ -6951,15 +7320,6 @@
6951 } 7320 }
6952 7321
6953 { 7322 {
6954 name = "math_random___math_random_1.0.1.tgz";
6955 path = fetchurl {
6956 name = "math_random___math_random_1.0.1.tgz";
6957 url = "https://registry.yarnpkg.com/math-random/-/math-random-1.0.1.tgz";
6958 sha1 = "8b3aac588b8a66e4975e3cdea67f7bb329601fac";
6959 };
6960 }
6961
6962 {
6963 name = "md5.js___md5.js_1.3.5.tgz"; 7323 name = "md5.js___md5.js_1.3.5.tgz";
6964 path = fetchurl { 7324 path = fetchurl {
6965 name = "md5.js___md5.js_1.3.5.tgz"; 7325 name = "md5.js___md5.js_1.3.5.tgz";
@@ -6987,15 +7347,6 @@
6987 } 7347 }
6988 7348
6989 { 7349 {
6990 name = "mem___mem_1.1.0.tgz";
6991 path = fetchurl {
6992 name = "mem___mem_1.1.0.tgz";
6993 url = "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz";
6994 sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76";
6995 };
6996 }
6997
6998 {
6999 name = "mem___mem_4.0.0.tgz"; 7350 name = "mem___mem_4.0.0.tgz";
7000 path = fetchurl { 7351 path = fetchurl {
7001 name = "mem___mem_4.0.0.tgz"; 7352 name = "mem___mem_4.0.0.tgz";
@@ -7005,11 +7356,11 @@
7005 } 7356 }
7006 7357
7007 { 7358 {
7008 name = "memoize_one___memoize_one_4.1.0.tgz"; 7359 name = "memoize_one___memoize_one_5.0.4.tgz";
7009 path = fetchurl { 7360 path = fetchurl {
7010 name = "memoize_one___memoize_one_4.1.0.tgz"; 7361 name = "memoize_one___memoize_one_5.0.4.tgz";
7011 url = "https://registry.yarnpkg.com/memoize-one/-/memoize-one-4.1.0.tgz"; 7362 url = "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.0.4.tgz";
7012 sha1 = "a2387c58c03fff27ca390c31b764a79addf3f906"; 7363 sha1 = "005928aced5c43d890a4dfab18ca908b0ec92cbc";
7013 }; 7364 };
7014 } 7365 }
7015 7366
@@ -7059,15 +7410,6 @@
7059 } 7410 }
7060 7411
7061 { 7412 {
7062 name = "micromatch___micromatch_2.3.11.tgz";
7063 path = fetchurl {
7064 name = "micromatch___micromatch_2.3.11.tgz";
7065 url = "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz";
7066 sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
7067 };
7068 }
7069
7070 {
7071 name = "micromatch___micromatch_3.1.10.tgz"; 7413 name = "micromatch___micromatch_3.1.10.tgz";
7072 path = fetchurl { 7414 path = fetchurl {
7073 name = "micromatch___micromatch_3.1.10.tgz"; 7415 name = "micromatch___micromatch_3.1.10.tgz";
@@ -7086,6 +7428,15 @@
7086 } 7428 }
7087 7429
7088 { 7430 {
7431 name = "mime_db___mime_db_1.40.0.tgz";
7432 path = fetchurl {
7433 name = "mime_db___mime_db_1.40.0.tgz";
7434 url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz";
7435 sha1 = "a65057e998db090f732a68f6c276d387d4126c32";
7436 };
7437 }
7438
7439 {
7089 name = "mime_db___mime_db_1.37.0.tgz"; 7440 name = "mime_db___mime_db_1.37.0.tgz";
7090 path = fetchurl { 7441 path = fetchurl {
7091 name = "mime_db___mime_db_1.37.0.tgz"; 7442 name = "mime_db___mime_db_1.37.0.tgz";
@@ -7104,20 +7455,29 @@
7104 } 7455 }
7105 7456
7106 { 7457 {
7107 name = "mime___mime_1.4.1.tgz"; 7458 name = "mime_types___mime_types_2.1.24.tgz";
7108 path = fetchurl { 7459 path = fetchurl {
7109 name = "mime___mime_1.4.1.tgz"; 7460 name = "mime_types___mime_types_2.1.24.tgz";
7110 url = "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz"; 7461 url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz";
7111 sha1 = "121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"; 7462 sha1 = "b6f8d0b3e951efb77dedeca194cff6d16f676f81";
7112 }; 7463 };
7113 } 7464 }
7114 7465
7115 { 7466 {
7116 name = "mime___mime_2.4.0.tgz"; 7467 name = "mime___mime_1.6.0.tgz";
7117 path = fetchurl { 7468 path = fetchurl {
7118 name = "mime___mime_2.4.0.tgz"; 7469 name = "mime___mime_1.6.0.tgz";
7119 url = "https://registry.yarnpkg.com/mime/-/mime-2.4.0.tgz"; 7470 url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz";
7120 sha1 = "e051fd881358585f3279df333fe694da0bcffdd6"; 7471 sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1";
7472 };
7473 }
7474
7475 {
7476 name = "mime___mime_2.4.3.tgz";
7477 path = fetchurl {
7478 name = "mime___mime_2.4.3.tgz";
7479 url = "https://registry.yarnpkg.com/mime/-/mime-2.4.3.tgz";
7480 sha1 = "229687331e86f68924e6cb59e1cdd937f18275fe";
7121 }; 7481 };
7122 } 7482 }
7123 7483
@@ -7176,6 +7536,15 @@
7176 } 7536 }
7177 7537
7178 { 7538 {
7539 name = "minimist___minimist_1.1.3.tgz";
7540 path = fetchurl {
7541 name = "minimist___minimist_1.1.3.tgz";
7542 url = "https://registry.yarnpkg.com/minimist/-/minimist-1.1.3.tgz";
7543 sha1 = "3bedfd91a92d39016fcfaa1c681e8faa1a1efda8";
7544 };
7545 }
7546
7547 {
7179 name = "minimist___minimist_1.2.0.tgz"; 7548 name = "minimist___minimist_1.2.0.tgz";
7180 path = fetchurl { 7549 path = fetchurl {
7181 name = "minimist___minimist_1.2.0.tgz"; 7550 name = "minimist___minimist_1.2.0.tgz";
@@ -7311,6 +7680,15 @@
7311 } 7680 }
7312 7681
7313 { 7682 {
7683 name = "mute_stream___mute_stream_0.0.5.tgz";
7684 path = fetchurl {
7685 name = "mute_stream___mute_stream_0.0.5.tgz";
7686 url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz";
7687 sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0";
7688 };
7689 }
7690
7691 {
7314 name = "mute_stream___mute_stream_0.0.7.tgz"; 7692 name = "mute_stream___mute_stream_0.0.7.tgz";
7315 path = fetchurl { 7693 path = fetchurl {
7316 name = "mute_stream___mute_stream_0.0.7.tgz"; 7694 name = "mute_stream___mute_stream_0.0.7.tgz";
@@ -7320,11 +7698,11 @@
7320 } 7698 }
7321 7699
7322 { 7700 {
7323 name = "nan___nan_2.12.1.tgz"; 7701 name = "nan___nan_2.14.0.tgz";
7324 path = fetchurl { 7702 path = fetchurl {
7325 name = "nan___nan_2.12.1.tgz"; 7703 name = "nan___nan_2.14.0.tgz";
7326 url = "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz"; 7704 url = "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz";
7327 sha1 = "7b1aa193e9aa86057e3c7bbd0ac448e770925552"; 7705 sha1 = "7818f722027b2459a86f0295d434d1fc2336c52c";
7328 }; 7706 };
7329 } 7707 }
7330 7708
@@ -7365,11 +7743,11 @@
7365 } 7743 }
7366 7744
7367 { 7745 {
7368 name = "negotiator___negotiator_0.6.1.tgz"; 7746 name = "negotiator___negotiator_0.6.2.tgz";
7369 path = fetchurl { 7747 path = fetchurl {
7370 name = "negotiator___negotiator_0.6.1.tgz"; 7748 name = "negotiator___negotiator_0.6.2.tgz";
7371 url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz"; 7749 url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz";
7372 sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9"; 7750 sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb";
7373 }; 7751 };
7374 } 7752 }
7375 7753
@@ -7437,6 +7815,15 @@
7437 } 7815 }
7438 7816
7439 { 7817 {
7818 name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz";
7819 path = fetchurl {
7820 name = "node_modules_regexp___node_modules_regexp_1.0.0.tgz";
7821 url = "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz";
7822 sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40";
7823 };
7824 }
7825
7826 {
7440 name = "node_notifier___node_notifier_5.3.0.tgz"; 7827 name = "node_notifier___node_notifier_5.3.0.tgz";
7441 path = fetchurl { 7828 path = fetchurl {
7442 name = "node_notifier___node_notifier_5.3.0.tgz"; 7829 name = "node_notifier___node_notifier_5.3.0.tgz";
@@ -7446,20 +7833,20 @@
7446 } 7833 }
7447 7834
7448 { 7835 {
7449 name = "node_pre_gyp___node_pre_gyp_0.10.3.tgz"; 7836 name = "node_pre_gyp___node_pre_gyp_0.12.0.tgz";
7450 path = fetchurl { 7837 path = fetchurl {
7451 name = "node_pre_gyp___node_pre_gyp_0.10.3.tgz"; 7838 name = "node_pre_gyp___node_pre_gyp_0.12.0.tgz";
7452 url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz"; 7839 url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz";
7453 sha1 = "3070040716afdc778747b61b6887bf78880b80fc"; 7840 sha1 = "39ba4bb1439da030295f899e3b520b7785766149";
7454 }; 7841 };
7455 } 7842 }
7456 7843
7457 { 7844 {
7458 name = "node_releases___node_releases_1.1.3.tgz"; 7845 name = "node_releases___node_releases_1.1.23.tgz";
7459 path = fetchurl { 7846 path = fetchurl {
7460 name = "node_releases___node_releases_1.1.3.tgz"; 7847 name = "node_releases___node_releases_1.1.23.tgz";
7461 url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.3.tgz"; 7848 url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.23.tgz";
7462 sha1 = "aad9ce0dcb98129c753f772c0aa01360fb90fbd2"; 7849 sha1 = "de7409f72de044a2fa59c097f436ba89c39997f0";
7463 }; 7850 };
7464 } 7851 }
7465 7852
@@ -7473,6 +7860,15 @@
7473 } 7860 }
7474 7861
7475 { 7862 {
7863 name = "nopt___nopt_1.0.10.tgz";
7864 path = fetchurl {
7865 name = "nopt___nopt_1.0.10.tgz";
7866 url = "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz";
7867 sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
7868 };
7869 }
7870
7871 {
7476 name = "normalize_package_data___normalize_package_data_2.4.0.tgz"; 7872 name = "normalize_package_data___normalize_package_data_2.4.0.tgz";
7477 path = fetchurl { 7873 path = fetchurl {
7478 name = "normalize_package_data___normalize_package_data_2.4.0.tgz"; 7874 name = "normalize_package_data___normalize_package_data_2.4.0.tgz";
@@ -7491,6 +7887,15 @@
7491 } 7887 }
7492 7888
7493 { 7889 {
7890 name = "normalize_path___normalize_path_3.0.0.tgz";
7891 path = fetchurl {
7892 name = "normalize_path___normalize_path_3.0.0.tgz";
7893 url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz";
7894 sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65";
7895 };
7896 }
7897
7898 {
7494 name = "normalize_range___normalize_range_0.1.2.tgz"; 7899 name = "normalize_range___normalize_range_0.1.2.tgz";
7495 path = fetchurl { 7900 path = fetchurl {
7496 name = "normalize_range___normalize_range_0.1.2.tgz"; 7901 name = "normalize_range___normalize_range_0.1.2.tgz";
@@ -7698,15 +8103,6 @@
7698 } 8103 }
7699 8104
7700 { 8105 {
7701 name = "object.omit___object.omit_2.0.1.tgz";
7702 path = fetchurl {
7703 name = "object.omit___object.omit_2.0.1.tgz";
7704 url = "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz";
7705 sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
7706 };
7707 }
7708
7709 {
7710 name = "object.pick___object.pick_1.3.0.tgz"; 8106 name = "object.pick___object.pick_1.3.0.tgz";
7711 path = fetchurl { 8107 path = fetchurl {
7712 name = "object.pick___object.pick_1.3.0.tgz"; 8108 name = "object.pick___object.pick_1.3.0.tgz";
@@ -7716,11 +8112,11 @@
7716 } 8112 }
7717 8113
7718 { 8114 {
7719 name = "object.values___object.values_1.0.4.tgz"; 8115 name = "object.values___object.values_1.1.0.tgz";
7720 path = fetchurl { 8116 path = fetchurl {
7721 name = "object.values___object.values_1.0.4.tgz"; 8117 name = "object.values___object.values_1.1.0.tgz";
7722 url = "https://registry.yarnpkg.com/object.values/-/object.values-1.0.4.tgz"; 8118 url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz";
7723 sha1 = "e524da09b4f66ff05df457546ec72ac99f13069a"; 8119 sha1 = "bf6810ef5da3e5325790eaaa2be213ea84624da9";
7724 }; 8120 };
7725 } 8121 }
7726 8122
@@ -7734,11 +8130,11 @@
7734 } 8130 }
7735 8131
7736 { 8132 {
7737 name = "offline_plugin___offline_plugin_5.0.6.tgz"; 8133 name = "offline_plugin___offline_plugin_5.0.7.tgz";
7738 path = fetchurl { 8134 path = fetchurl {
7739 name = "offline_plugin___offline_plugin_5.0.6.tgz"; 8135 name = "offline_plugin___offline_plugin_5.0.7.tgz";
7740 url = "https://registry.yarnpkg.com/offline-plugin/-/offline-plugin-5.0.6.tgz"; 8136 url = "https://registry.yarnpkg.com/offline-plugin/-/offline-plugin-5.0.7.tgz";
7741 sha1 = "7a7b244220cddb8a8cabecb172ec5c0be03e74b2"; 8137 sha1 = "26936ad1a7699f4d67e0a095a258972a4ccf1788";
7742 }; 8138 };
7743 } 8139 }
7744 8140
@@ -7752,11 +8148,11 @@
7752 } 8148 }
7753 8149
7754 { 8150 {
7755 name = "on_headers___on_headers_1.0.1.tgz"; 8151 name = "on_headers___on_headers_1.0.2.tgz";
7756 path = fetchurl { 8152 path = fetchurl {
7757 name = "on_headers___on_headers_1.0.1.tgz"; 8153 name = "on_headers___on_headers_1.0.2.tgz";
7758 url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz"; 8154 url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz";
7759 sha1 = "928f5d0f470d49342651ea6794b0857c100693f7"; 8155 sha1 = "772b0ae6aaa525c399e489adfad90c403eb3c28f";
7760 }; 8156 };
7761 } 8157 }
7762 8158
@@ -7770,6 +8166,15 @@
7770 } 8166 }
7771 8167
7772 { 8168 {
8169 name = "onetime___onetime_1.1.0.tgz";
8170 path = fetchurl {
8171 name = "onetime___onetime_1.1.0.tgz";
8172 url = "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz";
8173 sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
8174 };
8175 }
8176
8177 {
7773 name = "onetime___onetime_2.0.1.tgz"; 8178 name = "onetime___onetime_2.0.1.tgz";
7774 path = fetchurl { 8179 path = fetchurl {
7775 name = "onetime___onetime_2.0.1.tgz"; 8180 name = "onetime___onetime_2.0.1.tgz";
@@ -7788,11 +8193,11 @@
7788 } 8193 }
7789 8194
7790 { 8195 {
7791 name = "opn___opn_5.4.0.tgz"; 8196 name = "opn___opn_5.5.0.tgz";
7792 path = fetchurl { 8197 path = fetchurl {
7793 name = "opn___opn_5.4.0.tgz"; 8198 name = "opn___opn_5.5.0.tgz";
7794 url = "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz"; 8199 url = "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz";
7795 sha1 = "cb545e7aab78562beb11aa3bfabc7042e1761035"; 8200 sha1 = "fc7164fab56d235904c51c3b27da6758ca3b9bfc";
7796 }; 8201 };
7797 } 8202 }
7798 8203
@@ -7842,15 +8247,6 @@
7842 } 8247 }
7843 8248
7844 { 8249 {
7845 name = "os_locale___os_locale_2.1.0.tgz";
7846 path = fetchurl {
7847 name = "os_locale___os_locale_2.1.0.tgz";
7848 url = "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz";
7849 sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2";
7850 };
7851 }
7852
7853 {
7854 name = "os_locale___os_locale_3.1.0.tgz"; 8250 name = "os_locale___os_locale_3.1.0.tgz";
7855 path = fetchurl { 8251 path = fetchurl {
7856 name = "os_locale___os_locale_3.1.0.tgz"; 8252 name = "os_locale___os_locale_3.1.0.tgz";
@@ -7887,6 +8283,15 @@
7887 } 8283 }
7888 8284
7889 { 8285 {
8286 name = "p_each_series___p_each_series_1.0.0.tgz";
8287 path = fetchurl {
8288 name = "p_each_series___p_each_series_1.0.0.tgz";
8289 url = "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz";
8290 sha1 = "930f3d12dd1f50e7434457a22cd6f04ac6ad7f71";
8291 };
8292 }
8293
8294 {
7890 name = "p_finally___p_finally_1.0.0.tgz"; 8295 name = "p_finally___p_finally_1.0.0.tgz";
7891 path = fetchurl { 8296 path = fetchurl {
7892 name = "p_finally___p_finally_1.0.0.tgz"; 8297 name = "p_finally___p_finally_1.0.0.tgz";
@@ -7941,11 +8346,20 @@
7941 } 8346 }
7942 8347
7943 { 8348 {
7944 name = "p_map___p_map_1.2.0.tgz"; 8349 name = "p_map___p_map_2.1.0.tgz";
7945 path = fetchurl { 8350 path = fetchurl {
7946 name = "p_map___p_map_1.2.0.tgz"; 8351 name = "p_map___p_map_2.1.0.tgz";
7947 url = "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz"; 8352 url = "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz";
7948 sha1 = "e4e94f311eabbc8633a1e79908165fca26241b6b"; 8353 sha1 = "310928feef9c9ecc65b68b17693018a665cea175";
8354 };
8355 }
8356
8357 {
8358 name = "p_reduce___p_reduce_1.0.0.tgz";
8359 path = fetchurl {
8360 name = "p_reduce___p_reduce_1.0.0.tgz";
8361 url = "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz";
8362 sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa";
7949 }; 8363 };
7950 } 8364 }
7951 8365
@@ -8013,15 +8427,6 @@
8013 } 8427 }
8014 8428
8015 { 8429 {
8016 name = "parse_glob___parse_glob_3.0.4.tgz";
8017 path = fetchurl {
8018 name = "parse_glob___parse_glob_3.0.4.tgz";
8019 url = "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz";
8020 sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
8021 };
8022 }
8023
8024 {
8025 name = "parse_json___parse_json_2.2.0.tgz"; 8430 name = "parse_json___parse_json_2.2.0.tgz";
8026 path = fetchurl { 8431 path = fetchurl {
8027 name = "parse_json___parse_json_2.2.0.tgz"; 8432 name = "parse_json___parse_json_2.2.0.tgz";
@@ -8040,6 +8445,15 @@
8040 } 8445 }
8041 8446
8042 { 8447 {
8448 name = "parse_passwd___parse_passwd_1.0.0.tgz";
8449 path = fetchurl {
8450 name = "parse_passwd___parse_passwd_1.0.0.tgz";
8451 url = "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz";
8452 sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
8453 };
8454 }
8455
8456 {
8043 name = "parse5___parse5_4.0.0.tgz"; 8457 name = "parse5___parse5_4.0.0.tgz";
8044 path = fetchurl { 8458 path = fetchurl {
8045 name = "parse5___parse5_4.0.0.tgz"; 8459 name = "parse5___parse5_4.0.0.tgz";
@@ -8058,11 +8472,11 @@
8058 } 8472 }
8059 8473
8060 { 8474 {
8061 name = "parseurl___parseurl_1.3.2.tgz"; 8475 name = "parseurl___parseurl_1.3.3.tgz";
8062 path = fetchurl { 8476 path = fetchurl {
8063 name = "parseurl___parseurl_1.3.2.tgz"; 8477 name = "parseurl___parseurl_1.3.3.tgz";
8064 url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz"; 8478 url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz";
8065 sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3"; 8479 sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4";
8066 }; 8480 };
8067 } 8481 }
8068 8482
@@ -8103,15 +8517,6 @@
8103 } 8517 }
8104 8518
8105 { 8519 {
8106 name = "path_exists___path_exists_2.1.0.tgz";
8107 path = fetchurl {
8108 name = "path_exists___path_exists_2.1.0.tgz";
8109 url = "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz";
8110 sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b";
8111 };
8112 }
8113
8114 {
8115 name = "path_exists___path_exists_3.0.0.tgz"; 8520 name = "path_exists___path_exists_3.0.0.tgz";
8116 path = fetchurl { 8521 path = fetchurl {
8117 name = "path_exists___path_exists_3.0.0.tgz"; 8522 name = "path_exists___path_exists_3.0.0.tgz";
@@ -8175,20 +8580,20 @@
8175 } 8580 }
8176 8581
8177 { 8582 {
8178 name = "path_type___path_type_1.1.0.tgz"; 8583 name = "path_type___path_type_2.0.0.tgz";
8179 path = fetchurl { 8584 path = fetchurl {
8180 name = "path_type___path_type_1.1.0.tgz"; 8585 name = "path_type___path_type_2.0.0.tgz";
8181 url = "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz"; 8586 url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz";
8182 sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; 8587 sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73";
8183 }; 8588 };
8184 } 8589 }
8185 8590
8186 { 8591 {
8187 name = "path_type___path_type_2.0.0.tgz"; 8592 name = "path_type___path_type_3.0.0.tgz";
8188 path = fetchurl { 8593 path = fetchurl {
8189 name = "path_type___path_type_2.0.0.tgz"; 8594 name = "path_type___path_type_3.0.0.tgz";
8190 url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz"; 8595 url = "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz";
8191 sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; 8596 sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f";
8192 }; 8597 };
8193 } 8598 }
8194 8599
@@ -8292,6 +8697,15 @@
8292 } 8697 }
8293 8698
8294 { 8699 {
8700 name = "pify___pify_4.0.1.tgz";
8701 path = fetchurl {
8702 name = "pify___pify_4.0.1.tgz";
8703 url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz";
8704 sha1 = "4b2cd25c50d598735c50292224fd8c6df41e3231";
8705 };
8706 }
8707
8708 {
8295 name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 8709 name = "pinkie_promise___pinkie_promise_2.0.1.tgz";
8296 path = fetchurl { 8710 path = fetchurl {
8297 name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; 8711 name = "pinkie_promise___pinkie_promise_2.0.1.tgz";
@@ -8310,11 +8724,11 @@
8310 } 8724 }
8311 8725
8312 { 8726 {
8313 name = "pkg_dir___pkg_dir_1.0.0.tgz"; 8727 name = "pirates___pirates_4.0.1.tgz";
8314 path = fetchurl { 8728 path = fetchurl {
8315 name = "pkg_dir___pkg_dir_1.0.0.tgz"; 8729 name = "pirates___pirates_4.0.1.tgz";
8316 url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz"; 8730 url = "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz";
8317 sha1 = "7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"; 8731 sha1 = "643a92caf894566f91b2b986d2c66950a8e2fb87";
8318 }; 8732 };
8319 } 8733 }
8320 8734
@@ -8337,6 +8751,15 @@
8337 } 8751 }
8338 8752
8339 { 8753 {
8754 name = "pluralize___pluralize_1.2.1.tgz";
8755 path = fetchurl {
8756 name = "pluralize___pluralize_1.2.1.tgz";
8757 url = "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz";
8758 sha1 = "d1a21483fd22bb41e58a12fa3421823140897c45";
8759 };
8760 }
8761
8762 {
8340 name = "pluralize___pluralize_7.0.0.tgz"; 8763 name = "pluralize___pluralize_7.0.0.tgz";
8341 path = fetchurl { 8764 path = fetchurl {
8342 name = "pluralize___pluralize_7.0.0.tgz"; 8765 name = "pluralize___pluralize_7.0.0.tgz";
@@ -8382,11 +8805,11 @@
8382 } 8805 }
8383 8806
8384 { 8807 {
8385 name = "postcss_colormin___postcss_colormin_4.0.2.tgz"; 8808 name = "postcss_colormin___postcss_colormin_4.0.3.tgz";
8386 path = fetchurl { 8809 path = fetchurl {
8387 name = "postcss_colormin___postcss_colormin_4.0.2.tgz"; 8810 name = "postcss_colormin___postcss_colormin_4.0.3.tgz";
8388 url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.2.tgz"; 8811 url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz";
8389 sha1 = "93cd1fa11280008696887db1a528048b18e7ed99"; 8812 sha1 = "ae060bce93ed794ac71264f08132d550956bd381";
8390 }; 8813 };
8391 } 8814 }
8392 8815
@@ -8400,11 +8823,11 @@
8400 } 8823 }
8401 8824
8402 { 8825 {
8403 name = "postcss_discard_comments___postcss_discard_comments_4.0.1.tgz"; 8826 name = "postcss_discard_comments___postcss_discard_comments_4.0.2.tgz";
8404 path = fetchurl { 8827 path = fetchurl {
8405 name = "postcss_discard_comments___postcss_discard_comments_4.0.1.tgz"; 8828 name = "postcss_discard_comments___postcss_discard_comments_4.0.2.tgz";
8406 url = "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.1.tgz"; 8829 url = "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz";
8407 sha1 = "30697735b0c476852a7a11050eb84387a67ef55d"; 8830 sha1 = "1fbabd2c246bff6aaad7997b2b0918f4d7af4033";
8408 }; 8831 };
8409 } 8832 }
8410 8833
@@ -8454,20 +8877,20 @@
8454 } 8877 }
8455 8878
8456 { 8879 {
8457 name = "postcss_merge_longhand___postcss_merge_longhand_4.0.10.tgz"; 8880 name = "postcss_merge_longhand___postcss_merge_longhand_4.0.11.tgz";
8458 path = fetchurl { 8881 path = fetchurl {
8459 name = "postcss_merge_longhand___postcss_merge_longhand_4.0.10.tgz"; 8882 name = "postcss_merge_longhand___postcss_merge_longhand_4.0.11.tgz";
8460 url = "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.10.tgz"; 8883 url = "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz";
8461 sha1 = "c4d63ab57bdc054ab4067ab075d488c8c2978380"; 8884 sha1 = "62f49a13e4a0ee04e7b98f42bb16062ca2549e24";
8462 }; 8885 };
8463 } 8886 }
8464 8887
8465 { 8888 {
8466 name = "postcss_merge_rules___postcss_merge_rules_4.0.2.tgz"; 8889 name = "postcss_merge_rules___postcss_merge_rules_4.0.3.tgz";
8467 path = fetchurl { 8890 path = fetchurl {
8468 name = "postcss_merge_rules___postcss_merge_rules_4.0.2.tgz"; 8891 name = "postcss_merge_rules___postcss_merge_rules_4.0.3.tgz";
8469 url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.2.tgz"; 8892 url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz";
8470 sha1 = "2be44401bf19856f27f32b8b12c0df5af1b88e74"; 8893 sha1 = "362bea4ff5a1f98e4075a713c6cb25aefef9a650";
8471 }; 8894 };
8472 } 8895 }
8473 8896
@@ -8481,29 +8904,29 @@
8481 } 8904 }
8482 8905
8483 { 8906 {
8484 name = "postcss_minify_gradients___postcss_minify_gradients_4.0.1.tgz"; 8907 name = "postcss_minify_gradients___postcss_minify_gradients_4.0.2.tgz";
8485 path = fetchurl { 8908 path = fetchurl {
8486 name = "postcss_minify_gradients___postcss_minify_gradients_4.0.1.tgz"; 8909 name = "postcss_minify_gradients___postcss_minify_gradients_4.0.2.tgz";
8487 url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.1.tgz"; 8910 url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz";
8488 sha1 = "6da95c6e92a809f956bb76bf0c04494953e1a7dd"; 8911 sha1 = "93b29c2ff5099c535eecda56c4aa6e665a663471";
8489 }; 8912 };
8490 } 8913 }
8491 8914
8492 { 8915 {
8493 name = "postcss_minify_params___postcss_minify_params_4.0.1.tgz"; 8916 name = "postcss_minify_params___postcss_minify_params_4.0.2.tgz";
8494 path = fetchurl { 8917 path = fetchurl {
8495 name = "postcss_minify_params___postcss_minify_params_4.0.1.tgz"; 8918 name = "postcss_minify_params___postcss_minify_params_4.0.2.tgz";
8496 url = "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.1.tgz"; 8919 url = "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz";
8497 sha1 = "5b2e2d0264dd645ef5d68f8fec0d4c38c1cf93d2"; 8920 sha1 = "6b9cef030c11e35261f95f618c90036d680db874";
8498 }; 8921 };
8499 } 8922 }
8500 8923
8501 { 8924 {
8502 name = "postcss_minify_selectors___postcss_minify_selectors_4.0.1.tgz"; 8925 name = "postcss_minify_selectors___postcss_minify_selectors_4.0.2.tgz";
8503 path = fetchurl { 8926 path = fetchurl {
8504 name = "postcss_minify_selectors___postcss_minify_selectors_4.0.1.tgz"; 8927 name = "postcss_minify_selectors___postcss_minify_selectors_4.0.2.tgz";
8505 url = "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.1.tgz"; 8928 url = "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz";
8506 sha1 = "a891c197977cc37abf60b3ea06b84248b1c1e9cd"; 8929 sha1 = "e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8";
8507 }; 8930 };
8508 } 8931 }
8509 8932
@@ -8517,20 +8940,20 @@
8517 } 8940 }
8518 8941
8519 { 8942 {
8520 name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.3.tgz"; 8943 name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz";
8521 path = fetchurl { 8944 path = fetchurl {
8522 name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.3.tgz"; 8945 name = "postcss_modules_local_by_default___postcss_modules_local_by_default_2.0.6.tgz";
8523 url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.3.tgz"; 8946 url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz";
8524 sha1 = "6a199d596ec3ef57b8f5ced96d786b8cb16a7dec"; 8947 sha1 = "dd9953f6dd476b5fd1ef2d8830c8929760b56e63";
8525 }; 8948 };
8526 } 8949 }
8527 8950
8528 { 8951 {
8529 name = "postcss_modules_scope___postcss_modules_scope_2.0.1.tgz"; 8952 name = "postcss_modules_scope___postcss_modules_scope_2.1.0.tgz";
8530 path = fetchurl { 8953 path = fetchurl {
8531 name = "postcss_modules_scope___postcss_modules_scope_2.0.1.tgz"; 8954 name = "postcss_modules_scope___postcss_modules_scope_2.1.0.tgz";
8532 url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.0.1.tgz"; 8955 url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz";
8533 sha1 = "2c0f2394cde4cd09147db054c68917e38f6d43a4"; 8956 sha1 = "ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb";
8534 }; 8957 };
8535 } 8958 }
8536 8959
@@ -8553,47 +8976,47 @@
8553 } 8976 }
8554 8977
8555 { 8978 {
8556 name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.1.tgz"; 8979 name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.2.tgz";
8557 path = fetchurl { 8980 path = fetchurl {
8558 name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.1.tgz"; 8981 name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.2.tgz";
8559 url = "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.1.tgz"; 8982 url = "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz";
8560 sha1 = "d9a83d47c716e8a980f22f632c8b0458cfb48a4c"; 8983 sha1 = "0dbe04a4ce9063d4667ed2be476bb830c825935a";
8561 }; 8984 };
8562 } 8985 }
8563 8986
8564 { 8987 {
8565 name = "postcss_normalize_positions___postcss_normalize_positions_4.0.1.tgz"; 8988 name = "postcss_normalize_positions___postcss_normalize_positions_4.0.2.tgz";
8566 path = fetchurl { 8989 path = fetchurl {
8567 name = "postcss_normalize_positions___postcss_normalize_positions_4.0.1.tgz"; 8990 name = "postcss_normalize_positions___postcss_normalize_positions_4.0.2.tgz";
8568 url = "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.1.tgz"; 8991 url = "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz";
8569 sha1 = "ee2d4b67818c961964c6be09d179894b94fd6ba1"; 8992 sha1 = "05f757f84f260437378368a91f8932d4b102917f";
8570 }; 8993 };
8571 } 8994 }
8572 8995
8573 { 8996 {
8574 name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.1.tgz"; 8997 name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.2.tgz";
8575 path = fetchurl { 8998 path = fetchurl {
8576 name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.1.tgz"; 8999 name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.2.tgz";
8577 url = "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.1.tgz"; 9000 url = "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz";
8578 sha1 = "5293f234b94d7669a9f805495d35b82a581c50e5"; 9001 sha1 = "c4ebbc289f3991a028d44751cbdd11918b17910c";
8579 }; 9002 };
8580 } 9003 }
8581 9004
8582 { 9005 {
8583 name = "postcss_normalize_string___postcss_normalize_string_4.0.1.tgz"; 9006 name = "postcss_normalize_string___postcss_normalize_string_4.0.2.tgz";
8584 path = fetchurl { 9007 path = fetchurl {
8585 name = "postcss_normalize_string___postcss_normalize_string_4.0.1.tgz"; 9008 name = "postcss_normalize_string___postcss_normalize_string_4.0.2.tgz";
8586 url = "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.1.tgz"; 9009 url = "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz";
8587 sha1 = "23c5030c2cc24175f66c914fa5199e2e3c10fef3"; 9010 sha1 = "cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c";
8588 }; 9011 };
8589 } 9012 }
8590 9013
8591 { 9014 {
8592 name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.1.tgz"; 9015 name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.2.tgz";
8593 path = fetchurl { 9016 path = fetchurl {
8594 name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.1.tgz"; 9017 name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.2.tgz";
8595 url = "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.1.tgz"; 9018 url = "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz";
8596 sha1 = "8be83e0b9cb3ff2d1abddee032a49108f05f95d7"; 9019 sha1 = "8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9";
8597 }; 9020 };
8598 } 9021 }
8599 9022
@@ -8616,11 +9039,11 @@
8616 } 9039 }
8617 9040
8618 { 9041 {
8619 name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.1.tgz"; 9042 name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.2.tgz";
8620 path = fetchurl { 9043 path = fetchurl {
8621 name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.1.tgz"; 9044 name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.2.tgz";
8622 url = "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.1.tgz"; 9045 url = "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz";
8623 sha1 = "d14cb639b61238418ac8bc8d3b7bdd65fc86575e"; 9046 sha1 = "bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82";
8624 }; 9047 };
8625 } 9048 }
8626 9049
@@ -8634,29 +9057,29 @@
8634 } 9057 }
8635 9058
8636 { 9059 {
8637 name = "postcss_ordered_values___postcss_ordered_values_4.1.1.tgz"; 9060 name = "postcss_ordered_values___postcss_ordered_values_4.1.2.tgz";
8638 path = fetchurl { 9061 path = fetchurl {
8639 name = "postcss_ordered_values___postcss_ordered_values_4.1.1.tgz"; 9062 name = "postcss_ordered_values___postcss_ordered_values_4.1.2.tgz";
8640 url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.1.tgz"; 9063 url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz";
8641 sha1 = "2e3b432ef3e489b18333aeca1f1295eb89be9fc2"; 9064 sha1 = "0cf75c820ec7d5c4d280189559e0b571ebac0eee";
8642 }; 9065 };
8643 } 9066 }
8644 9067
8645 { 9068 {
8646 name = "postcss_reduce_initial___postcss_reduce_initial_4.0.2.tgz"; 9069 name = "postcss_reduce_initial___postcss_reduce_initial_4.0.3.tgz";
8647 path = fetchurl { 9070 path = fetchurl {
8648 name = "postcss_reduce_initial___postcss_reduce_initial_4.0.2.tgz"; 9071 name = "postcss_reduce_initial___postcss_reduce_initial_4.0.3.tgz";
8649 url = "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.2.tgz"; 9072 url = "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz";
8650 sha1 = "bac8e325d67510ee01fa460676dc8ea9e3b40f15"; 9073 sha1 = "7fd42ebea5e9c814609639e2c2e84ae270ba48df";
8651 }; 9074 };
8652 } 9075 }
8653 9076
8654 { 9077 {
8655 name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.1.tgz"; 9078 name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.2.tgz";
8656 path = fetchurl { 9079 path = fetchurl {
8657 name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.1.tgz"; 9080 name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.2.tgz";
8658 url = "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.1.tgz"; 9081 url = "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz";
8659 sha1 = "8600d5553bdd3ad640f43bff81eb52f8760d4561"; 9082 sha1 = "17efa405eacc6e07be3414a5ca2d1074681d4e29";
8660 }; 9083 };
8661 } 9084 }
8662 9085
@@ -8679,11 +9102,20 @@
8679 } 9102 }
8680 9103
8681 { 9104 {
8682 name = "postcss_svgo___postcss_svgo_4.0.1.tgz"; 9105 name = "postcss_selector_parser___postcss_selector_parser_6.0.2.tgz";
9106 path = fetchurl {
9107 name = "postcss_selector_parser___postcss_selector_parser_6.0.2.tgz";
9108 url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz";
9109 sha1 = "934cf799d016c83411859e09dcecade01286ec5c";
9110 };
9111 }
9112
9113 {
9114 name = "postcss_svgo___postcss_svgo_4.0.2.tgz";
8683 path = fetchurl { 9115 path = fetchurl {
8684 name = "postcss_svgo___postcss_svgo_4.0.1.tgz"; 9116 name = "postcss_svgo___postcss_svgo_4.0.2.tgz";
8685 url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.1.tgz"; 9117 url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz";
8686 sha1 = "5628cdb38f015de6b588ce6d0bf0724b492b581d"; 9118 sha1 = "17b997bc711b333bab143aaed3b8d3d6e3d38258";
8687 }; 9119 };
8688 } 9120 }
8689 9121
@@ -8715,11 +9147,11 @@
8715 } 9147 }
8716 9148
8717 { 9149 {
8718 name = "postcss___postcss_7.0.7.tgz"; 9150 name = "postcss___postcss_7.0.17.tgz";
8719 path = fetchurl { 9151 path = fetchurl {
8720 name = "postcss___postcss_7.0.7.tgz"; 9152 name = "postcss___postcss_7.0.17.tgz";
8721 url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.7.tgz"; 9153 url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.17.tgz";
8722 sha1 = "2754d073f77acb4ef08f1235c36c5721a7201614"; 9154 sha1 = "4da1bdff5322d4a0acaab4d87f3e782436bad31f";
8723 }; 9155 };
8724 } 9156 }
8725 9157
@@ -8778,20 +9210,20 @@
8778 } 9210 }
8779 9211
8780 { 9212 {
8781 name = "preserve___preserve_0.2.0.tgz"; 9213 name = "prettier___prettier_1.18.2.tgz";
8782 path = fetchurl { 9214 path = fetchurl {
8783 name = "preserve___preserve_0.2.0.tgz"; 9215 name = "prettier___prettier_1.18.2.tgz";
8784 url = "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz"; 9216 url = "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz";
8785 sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b"; 9217 sha1 = "6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea";
8786 }; 9218 };
8787 } 9219 }
8788 9220
8789 { 9221 {
8790 name = "pretty_format___pretty_format_23.6.0.tgz"; 9222 name = "pretty_format___pretty_format_24.8.0.tgz";
8791 path = fetchurl { 9223 path = fetchurl {
8792 name = "pretty_format___pretty_format_23.6.0.tgz"; 9224 name = "pretty_format___pretty_format_24.8.0.tgz";
8793 url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz"; 9225 url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz";
8794 sha1 = "5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"; 9226 sha1 = "8dae7044f58db7cb8be245383b565a963e3c27f2";
8795 }; 9227 };
8796 } 9228 }
8797 9229
@@ -8823,6 +9255,15 @@
8823 } 9255 }
8824 9256
8825 { 9257 {
9258 name = "progress___progress_1.1.8.tgz";
9259 path = fetchurl {
9260 name = "progress___progress_1.1.8.tgz";
9261 url = "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz";
9262 sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be";
9263 };
9264 }
9265
9266 {
8826 name = "progress___progress_2.0.3.tgz"; 9267 name = "progress___progress_2.0.3.tgz";
8827 path = fetchurl { 9268 path = fetchurl {
8828 name = "progress___progress_2.0.3.tgz"; 9269 name = "progress___progress_2.0.3.tgz";
@@ -8850,11 +9291,20 @@
8850 } 9291 }
8851 9292
8852 { 9293 {
8853 name = "prompts___prompts_0.1.14.tgz"; 9294 name = "prompts___prompts_2.0.3.tgz";
8854 path = fetchurl { 9295 path = fetchurl {
8855 name = "prompts___prompts_0.1.14.tgz"; 9296 name = "prompts___prompts_2.0.3.tgz";
8856 url = "https://registry.yarnpkg.com/prompts/-/prompts-0.1.14.tgz"; 9297 url = "https://registry.yarnpkg.com/prompts/-/prompts-2.0.3.tgz";
8857 sha1 = "a8e15c612c5c9ec8f8111847df3337c9cbd443b2"; 9298 sha1 = "c5ccb324010b2e8f74752aadceeb57134c1d2522";
9299 };
9300 }
9301
9302 {
9303 name = "prop_types_exact___prop_types_exact_1.2.0.tgz";
9304 path = fetchurl {
9305 name = "prop_types_exact___prop_types_exact_1.2.0.tgz";
9306 url = "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz";
9307 sha1 = "825d6be46094663848237e3925a98c6e944e9869";
8858 }; 9308 };
8859 } 9309 }
8860 9310
@@ -8868,20 +9318,20 @@
8868 } 9318 }
8869 9319
8870 { 9320 {
8871 name = "prop_types___prop_types_15.6.2.tgz"; 9321 name = "prop_types___prop_types_15.7.2.tgz";
8872 path = fetchurl { 9322 path = fetchurl {
8873 name = "prop_types___prop_types_15.6.2.tgz"; 9323 name = "prop_types___prop_types_15.7.2.tgz";
8874 url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz"; 9324 url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz";
8875 sha1 = "05d5ca77b4453e985d60fc7ff8c859094a497102"; 9325 sha1 = "52c41e75b8c87e72b9d9360e0206b99dcbffa6c5";
8876 }; 9326 };
8877 } 9327 }
8878 9328
8879 { 9329 {
8880 name = "proxy_addr___proxy_addr_2.0.4.tgz"; 9330 name = "proxy_addr___proxy_addr_2.0.5.tgz";
8881 path = fetchurl { 9331 path = fetchurl {
8882 name = "proxy_addr___proxy_addr_2.0.4.tgz"; 9332 name = "proxy_addr___proxy_addr_2.0.5.tgz";
8883 url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.4.tgz"; 9333 url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz";
8884 sha1 = "ecfc733bf22ff8c6f407fa275327b9ab67e48b93"; 9334 sha1 = "34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34";
8885 }; 9335 };
8886 } 9336 }
8887 9337
@@ -8895,15 +9345,6 @@
8895 } 9345 }
8896 9346
8897 { 9347 {
8898 name = "pseudomap___pseudomap_1.0.2.tgz";
8899 path = fetchurl {
8900 name = "pseudomap___pseudomap_1.0.2.tgz";
8901 url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz";
8902 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
8903 };
8904 }
8905
8906 {
8907 name = "psl___psl_1.1.31.tgz"; 9348 name = "psl___psl_1.1.31.tgz";
8908 path = fetchurl { 9349 path = fetchurl {
8909 name = "psl___psl_1.1.31.tgz"; 9350 name = "psl___psl_1.1.31.tgz";
@@ -8985,6 +9426,15 @@
8985 } 9426 }
8986 9427
8987 { 9428 {
9429 name = "qs___qs_6.7.0.tgz";
9430 path = fetchurl {
9431 name = "qs___qs_6.7.0.tgz";
9432 url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz";
9433 sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc";
9434 };
9435 }
9436
9437 {
8988 name = "qs___qs_6.5.2.tgz"; 9438 name = "qs___qs_6.5.2.tgz";
8989 path = fetchurl { 9439 path = fetchurl {
8990 name = "qs___qs_6.5.2.tgz"; 9440 name = "qs___qs_6.5.2.tgz";
@@ -9048,11 +9498,11 @@
9048 } 9498 }
9049 9499
9050 { 9500 {
9051 name = "rails_ujs___rails_ujs_5.2.2.tgz"; 9501 name = "rails_ujs___rails_ujs_5.2.3.tgz";
9052 path = fetchurl { 9502 path = fetchurl {
9053 name = "rails_ujs___rails_ujs_5.2.2.tgz"; 9503 name = "rails_ujs___rails_ujs_5.2.3.tgz";
9054 url = "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.2.tgz"; 9504 url = "https://registry.yarnpkg.com/rails-ujs/-/rails-ujs-5.2.3.tgz";
9055 sha1 = "ab01dd087a323975637b50e93e7afcc0f9068568"; 9505 sha1 = "4b65ea781a6befe62e96da6362165286a1fe4099";
9056 }; 9506 };
9057 } 9507 }
9058 9508
@@ -9066,15 +9516,6 @@
9066 } 9516 }
9067 9517
9068 { 9518 {
9069 name = "randomatic___randomatic_3.1.1.tgz";
9070 path = fetchurl {
9071 name = "randomatic___randomatic_3.1.1.tgz";
9072 url = "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz";
9073 sha1 = "b776efc59375984e36c537b2f51a1f0aff0da1ed";
9074 };
9075 }
9076
9077 {
9078 name = "randombytes___randombytes_2.0.6.tgz"; 9519 name = "randombytes___randombytes_2.0.6.tgz";
9079 path = fetchurl { 9520 path = fetchurl {
9080 name = "randombytes___randombytes_2.0.6.tgz"; 9521 name = "randombytes___randombytes_2.0.6.tgz";
@@ -9093,20 +9534,20 @@
9093 } 9534 }
9094 9535
9095 { 9536 {
9096 name = "range_parser___range_parser_1.2.0.tgz"; 9537 name = "range_parser___range_parser_1.2.1.tgz";
9097 path = fetchurl { 9538 path = fetchurl {
9098 name = "range_parser___range_parser_1.2.0.tgz"; 9539 name = "range_parser___range_parser_1.2.1.tgz";
9099 url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz"; 9540 url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz";
9100 sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e"; 9541 sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031";
9101 }; 9542 };
9102 } 9543 }
9103 9544
9104 { 9545 {
9105 name = "raw_body___raw_body_2.3.3.tgz"; 9546 name = "raw_body___raw_body_2.4.0.tgz";
9106 path = fetchurl { 9547 path = fetchurl {
9107 name = "raw_body___raw_body_2.3.3.tgz"; 9548 name = "raw_body___raw_body_2.4.0.tgz";
9108 url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz"; 9549 url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz";
9109 sha1 = "1b324ece6b5706e153855bc1148c65bb7f6ea0c3"; 9550 sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332";
9110 }; 9551 };
9111 } 9552 }
9112 9553
@@ -9120,11 +9561,11 @@
9120 } 9561 }
9121 9562
9122 { 9563 {
9123 name = "react_dom___react_dom_16.7.0.tgz"; 9564 name = "react_dom___react_dom_16.8.6.tgz";
9124 path = fetchurl { 9565 path = fetchurl {
9125 name = "react_dom___react_dom_16.7.0.tgz"; 9566 name = "react_dom___react_dom_16.8.6.tgz";
9126 url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.7.0.tgz"; 9567 url = "https://registry.yarnpkg.com/react-dom/-/react-dom-16.8.6.tgz";
9127 sha1 = "a17b2a7ca89ee7390bc1ed5eb81783c7461748b8"; 9568 sha1 = "71d6303f631e8b0097f56165ef608f051ff6e10f";
9128 }; 9569 };
9129 } 9570 }
9130 9571
@@ -9192,20 +9633,20 @@
9192 } 9633 }
9193 9634
9194 { 9635 {
9195 name = "react_intl___react_intl_2.7.2.tgz"; 9636 name = "react_intl___react_intl_2.9.0.tgz";
9196 path = fetchurl { 9637 path = fetchurl {
9197 name = "react_intl___react_intl_2.7.2.tgz"; 9638 name = "react_intl___react_intl_2.9.0.tgz";
9198 url = "https://registry.yarnpkg.com/react-intl/-/react-intl-2.7.2.tgz"; 9639 url = "https://registry.yarnpkg.com/react-intl/-/react-intl-2.9.0.tgz";
9199 sha1 = "efe97e3fc0e99b4e88a6e6150854d3d1852a4381"; 9640 sha1 = "c97c5d17d4718f1575fdbd5a769f96018a3b1843";
9200 }; 9641 };
9201 } 9642 }
9202 9643
9203 { 9644 {
9204 name = "react_is___react_is_16.7.0.tgz"; 9645 name = "react_is___react_is_16.8.6.tgz";
9205 path = fetchurl { 9646 path = fetchurl {
9206 name = "react_is___react_is_16.7.0.tgz"; 9647 name = "react_is___react_is_16.8.6.tgz";
9207 url = "https://registry.yarnpkg.com/react-is/-/react-is-16.7.0.tgz"; 9648 url = "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz";
9208 sha1 = "c1bd21c64f1f1364c6f70695ec02d69392f41bfa"; 9649 sha1 = "5bbc1e2d29141c9fbdfed456343fe2bc430a6a16";
9209 }; 9650 };
9210 } 9651 }
9211 9652
@@ -9264,11 +9705,11 @@
9264 } 9705 }
9265 9706
9266 { 9707 {
9267 name = "react_redux___react_redux_6.0.0.tgz"; 9708 name = "react_redux___react_redux_6.0.1.tgz";
9268 path = fetchurl { 9709 path = fetchurl {
9269 name = "react_redux___react_redux_6.0.0.tgz"; 9710 name = "react_redux___react_redux_6.0.1.tgz";
9270 url = "https://registry.yarnpkg.com/react-redux/-/react-redux-6.0.0.tgz"; 9711 url = "https://registry.yarnpkg.com/react-redux/-/react-redux-6.0.1.tgz";
9271 sha1 = "09e86eeed5febb98e9442458ad2970c8f1a173ef"; 9712 sha1 = "0d423e2c1cb10ada87293d47e7de7c329623ba4d";
9272 }; 9713 };
9273 } 9714 }
9274 9715
@@ -9300,11 +9741,11 @@
9300 } 9741 }
9301 9742
9302 { 9743 {
9303 name = "react_select___react_select_2.2.0.tgz"; 9744 name = "react_select___react_select_2.4.4.tgz";
9304 path = fetchurl { 9745 path = fetchurl {
9305 name = "react_select___react_select_2.2.0.tgz"; 9746 name = "react_select___react_select_2.4.4.tgz";
9306 url = "https://registry.yarnpkg.com/react-select/-/react-select-2.2.0.tgz"; 9747 url = "https://registry.yarnpkg.com/react-select/-/react-select-2.4.4.tgz";
9307 sha1 = "67c8b5c2dcb8df0384f2a103efe952570f5d6b93"; 9748 sha1 = "ba72468ef1060c7d46fbb862b0748f96491f1f73";
9308 }; 9749 };
9309 } 9750 }
9310 9751
@@ -9318,38 +9759,38 @@
9318 } 9759 }
9319 9760
9320 { 9761 {
9321 name = "react_swipeable_views_core___react_swipeable_views_core_0.13.0.tgz"; 9762 name = "react_swipeable_views_core___react_swipeable_views_core_0.13.1.tgz";
9322 path = fetchurl { 9763 path = fetchurl {
9323 name = "react_swipeable_views_core___react_swipeable_views_core_0.13.0.tgz"; 9764 name = "react_swipeable_views_core___react_swipeable_views_core_0.13.1.tgz";
9324 url = "https://registry.yarnpkg.com/react-swipeable-views-core/-/react-swipeable-views-core-0.13.0.tgz"; 9765 url = "https://registry.yarnpkg.com/react-swipeable-views-core/-/react-swipeable-views-core-0.13.1.tgz";
9325 sha1 = "6bf8a8132a756355444537672a14e84b1e3b53c2"; 9766 sha1 = "8829a922462a8bdd701709cd1b385393d38f1527";
9326 }; 9767 };
9327 } 9768 }
9328 9769
9329 { 9770 {
9330 name = "react_swipeable_views_utils___react_swipeable_views_utils_0.13.0.tgz"; 9771 name = "react_swipeable_views_utils___react_swipeable_views_utils_0.13.3.tgz";
9331 path = fetchurl { 9772 path = fetchurl {
9332 name = "react_swipeable_views_utils___react_swipeable_views_utils_0.13.0.tgz"; 9773 name = "react_swipeable_views_utils___react_swipeable_views_utils_0.13.3.tgz";
9333 url = "https://registry.yarnpkg.com/react-swipeable-views-utils/-/react-swipeable-views-utils-0.13.0.tgz"; 9774 url = "https://registry.yarnpkg.com/react-swipeable-views-utils/-/react-swipeable-views-utils-0.13.3.tgz";
9334 sha1 = "0ea17aa67f88a69d534c79d591f8d82ef98346a4"; 9775 sha1 = "c234d8d836bb085803631a9fef0adb2f9597221f";
9335 }; 9776 };
9336 } 9777 }
9337 9778
9338 { 9779 {
9339 name = "react_swipeable_views___react_swipeable_views_0.13.0.tgz"; 9780 name = "react_swipeable_views___react_swipeable_views_0.13.3.tgz";
9340 path = fetchurl { 9781 path = fetchurl {
9341 name = "react_swipeable_views___react_swipeable_views_0.13.0.tgz"; 9782 name = "react_swipeable_views___react_swipeable_views_0.13.3.tgz";
9342 url = "https://registry.yarnpkg.com/react-swipeable-views/-/react-swipeable-views-0.13.0.tgz"; 9783 url = "https://registry.yarnpkg.com/react-swipeable-views/-/react-swipeable-views-0.13.3.tgz";
9343 sha1 = "a200cef1005d55af6a27b97048afe9a4056e0ab8"; 9784 sha1 = "2ad886767c6b2de88000606a14bedde12156e6d0";
9344 }; 9785 };
9345 } 9786 }
9346 9787
9347 { 9788 {
9348 name = "react_test_renderer___react_test_renderer_16.7.0.tgz"; 9789 name = "react_test_renderer___react_test_renderer_16.8.6.tgz";
9349 path = fetchurl { 9790 path = fetchurl {
9350 name = "react_test_renderer___react_test_renderer_16.7.0.tgz"; 9791 name = "react_test_renderer___react_test_renderer_16.8.6.tgz";
9351 url = "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.7.0.tgz"; 9792 url = "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.8.6.tgz";
9352 sha1 = "1ca96c2b450ab47c36ba92cd8c03fcefc52ea01c"; 9793 sha1 = "188d8029b8c39c786f998aa3efd3ffe7642d5ba1";
9353 }; 9794 };
9354 } 9795 }
9355 9796
@@ -9381,20 +9822,11 @@
9381 } 9822 }
9382 9823
9383 { 9824 {
9384 name = "react___react_16.7.0.tgz"; 9825 name = "react___react_16.8.6.tgz";
9385 path = fetchurl { 9826 path = fetchurl {
9386 name = "react___react_16.7.0.tgz"; 9827 name = "react___react_16.8.6.tgz";
9387 url = "https://registry.yarnpkg.com/react/-/react-16.7.0.tgz"; 9828 url = "https://registry.yarnpkg.com/react/-/react-16.8.6.tgz";
9388 sha1 = "b674ec396b0a5715873b350446f7ea0802ab6381"; 9829 sha1 = "ad6c3a9614fd3a4e9ef51117f54d888da01f2bbe";
9389 };
9390 }
9391
9392 {
9393 name = "read_pkg_up___read_pkg_up_1.0.1.tgz";
9394 path = fetchurl {
9395 name = "read_pkg_up___read_pkg_up_1.0.1.tgz";
9396 url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz";
9397 sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02";
9398 }; 9830 };
9399 } 9831 }
9400 9832
@@ -9408,11 +9840,11 @@
9408 } 9840 }
9409 9841
9410 { 9842 {
9411 name = "read_pkg___read_pkg_1.1.0.tgz"; 9843 name = "read_pkg_up___read_pkg_up_4.0.0.tgz";
9412 path = fetchurl { 9844 path = fetchurl {
9413 name = "read_pkg___read_pkg_1.1.0.tgz"; 9845 name = "read_pkg_up___read_pkg_up_4.0.0.tgz";
9414 url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz"; 9846 url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz";
9415 sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; 9847 sha1 = "1b221c6088ba7799601c808f91161c66e58f8978";
9416 }; 9848 };
9417 } 9849 }
9418 9850
@@ -9426,6 +9858,15 @@
9426 } 9858 }
9427 9859
9428 { 9860 {
9861 name = "read_pkg___read_pkg_3.0.0.tgz";
9862 path = fetchurl {
9863 name = "read_pkg___read_pkg_3.0.0.tgz";
9864 url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz";
9865 sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389";
9866 };
9867 }
9868
9869 {
9429 name = "readable_stream___readable_stream_2.3.6.tgz"; 9870 name = "readable_stream___readable_stream_2.3.6.tgz";
9430 path = fetchurl { 9871 path = fetchurl {
9431 name = "readable_stream___readable_stream_2.3.6.tgz"; 9872 name = "readable_stream___readable_stream_2.3.6.tgz";
@@ -9453,11 +9894,20 @@
9453 } 9894 }
9454 9895
9455 { 9896 {
9456 name = "realpath_native___realpath_native_1.0.2.tgz"; 9897 name = "readline2___readline2_1.0.1.tgz";
9898 path = fetchurl {
9899 name = "readline2___readline2_1.0.1.tgz";
9900 url = "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz";
9901 sha1 = "41059608ffc154757b715d9989d199ffbf372e35";
9902 };
9903 }
9904
9905 {
9906 name = "realpath_native___realpath_native_1.1.0.tgz";
9457 path = fetchurl { 9907 path = fetchurl {
9458 name = "realpath_native___realpath_native_1.0.2.tgz"; 9908 name = "realpath_native___realpath_native_1.1.0.tgz";
9459 url = "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.0.2.tgz"; 9909 url = "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz";
9460 sha1 = "cd51ce089b513b45cf9b1516c82989b51ccc6560"; 9910 sha1 = "2003294fea23fb0672f2476ebe22fcf498a2d65c";
9461 }; 9911 };
9462 } 9912 }
9463 9913
@@ -9516,11 +9966,20 @@
9516 } 9966 }
9517 9967
9518 { 9968 {
9519 name = "regenerate_unicode_properties___regenerate_unicode_properties_7.0.0.tgz"; 9969 name = "reflect.ownkeys___reflect.ownkeys_0.2.0.tgz";
9970 path = fetchurl {
9971 name = "reflect.ownkeys___reflect.ownkeys_0.2.0.tgz";
9972 url = "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz";
9973 sha1 = "749aceec7f3fdf8b63f927a04809e90c5c0b3460";
9974 };
9975 }
9976
9977 {
9978 name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz";
9520 path = fetchurl { 9979 path = fetchurl {
9521 name = "regenerate_unicode_properties___regenerate_unicode_properties_7.0.0.tgz"; 9980 name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz";
9522 url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-7.0.0.tgz"; 9981 url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz";
9523 sha1 = "107405afcc4a190ec5ed450ecaa00ed0cafa7a4c"; 9982 sha1 = "ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e";
9524 }; 9983 };
9525 } 9984 }
9526 9985
@@ -9552,20 +10011,20 @@
9552 } 10011 }
9553 10012
9554 { 10013 {
9555 name = "regenerator_transform___regenerator_transform_0.13.3.tgz"; 10014 name = "regenerator_runtime___regenerator_runtime_0.13.2.tgz";
9556 path = fetchurl { 10015 path = fetchurl {
9557 name = "regenerator_transform___regenerator_transform_0.13.3.tgz"; 10016 name = "regenerator_runtime___regenerator_runtime_0.13.2.tgz";
9558 url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz"; 10017 url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz";
9559 sha1 = "264bd9ff38a8ce24b06e0636496b2c856b57bcbb"; 10018 sha1 = "32e59c9a6fb9b1a4aff09b4930ca2d4477343447";
9560 }; 10019 };
9561 } 10020 }
9562 10021
9563 { 10022 {
9564 name = "regex_cache___regex_cache_0.4.4.tgz"; 10023 name = "regenerator_transform___regenerator_transform_0.14.0.tgz";
9565 path = fetchurl { 10024 path = fetchurl {
9566 name = "regex_cache___regex_cache_0.4.4.tgz"; 10025 name = "regenerator_transform___regenerator_transform_0.14.0.tgz";
9567 url = "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz"; 10026 url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz";
9568 sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd"; 10027 sha1 = "2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf";
9569 }; 10028 };
9570 } 10029 }
9571 10030
@@ -9579,38 +10038,29 @@
9579 } 10038 }
9580 10039
9581 { 10040 {
9582 name = "regexpp___regexpp_2.0.1.tgz"; 10041 name = "regexp_tree___regexp_tree_0.1.10.tgz";
9583 path = fetchurl {
9584 name = "regexpp___regexpp_2.0.1.tgz";
9585 url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz";
9586 sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f";
9587 };
9588 }
9589
9590 {
9591 name = "regexpu_core___regexpu_core_1.0.0.tgz";
9592 path = fetchurl { 10042 path = fetchurl {
9593 name = "regexpu_core___regexpu_core_1.0.0.tgz"; 10043 name = "regexp_tree___regexp_tree_0.1.10.tgz";
9594 url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz"; 10044 url = "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.10.tgz";
9595 sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b"; 10045 sha1 = "d837816a039c7af8a8d64d7a7c3cf6a1d93450bc";
9596 }; 10046 };
9597 } 10047 }
9598 10048
9599 { 10049 {
9600 name = "regexpu_core___regexpu_core_4.4.0.tgz"; 10050 name = "regexpp___regexpp_2.0.1.tgz";
9601 path = fetchurl { 10051 path = fetchurl {
9602 name = "regexpu_core___regexpu_core_4.4.0.tgz"; 10052 name = "regexpp___regexpp_2.0.1.tgz";
9603 url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.4.0.tgz"; 10053 url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz";
9604 sha1 = "8d43e0d1266883969720345e70c275ee0aec0d32"; 10054 sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f";
9605 }; 10055 };
9606 } 10056 }
9607 10057
9608 { 10058 {
9609 name = "regjsgen___regjsgen_0.2.0.tgz"; 10059 name = "regexpu_core___regexpu_core_4.5.4.tgz";
9610 path = fetchurl { 10060 path = fetchurl {
9611 name = "regjsgen___regjsgen_0.2.0.tgz"; 10061 name = "regexpu_core___regexpu_core_4.5.4.tgz";
9612 url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz"; 10062 url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz";
9613 sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7"; 10063 sha1 = "080d9d02289aa87fe1667a4f5136bc98a6aebaae";
9614 }; 10064 };
9615 } 10065 }
9616 10066
@@ -9624,15 +10074,6 @@
9624 } 10074 }
9625 10075
9626 { 10076 {
9627 name = "regjsparser___regjsparser_0.1.5.tgz";
9628 path = fetchurl {
9629 name = "regjsparser___regjsparser_0.1.5.tgz";
9630 url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz";
9631 sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c";
9632 };
9633 }
9634
9635 {
9636 name = "regjsparser___regjsparser_0.6.0.tgz"; 10077 name = "regjsparser___regjsparser_0.6.0.tgz";
9637 path = fetchurl { 10078 path = fetchurl {
9638 name = "regjsparser___regjsparser_0.6.0.tgz"; 10079 name = "regjsparser___regjsparser_0.6.0.tgz";
@@ -9642,11 +10083,11 @@
9642 } 10083 }
9643 10084
9644 { 10085 {
9645 name = "rellax___rellax_1.7.1.tgz"; 10086 name = "rellax___rellax_1.10.0.tgz";
9646 path = fetchurl { 10087 path = fetchurl {
9647 name = "rellax___rellax_1.7.1.tgz"; 10088 name = "rellax___rellax_1.10.0.tgz";
9648 url = "https://registry.yarnpkg.com/rellax/-/rellax-1.7.1.tgz"; 10089 url = "https://registry.yarnpkg.com/rellax/-/rellax-1.10.0.tgz";
9649 sha1 = "2f82aaa1c1d8116eef08fc533c59655a097c8be2"; 10090 sha1 = "0308b813b458f9175d37ffb4272e1f616eab1341";
9650 }; 10091 };
9651 } 10092 }
9652 10093
@@ -9678,15 +10119,6 @@
9678 } 10119 }
9679 10120
9680 { 10121 {
9681 name = "repeating___repeating_2.0.1.tgz";
9682 path = fetchurl {
9683 name = "repeating___repeating_2.0.1.tgz";
9684 url = "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz";
9685 sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
9686 };
9687 }
9688
9689 {
9690 name = "request_promise_core___request_promise_core_1.1.1.tgz"; 10122 name = "request_promise_core___request_promise_core_1.1.1.tgz";
9691 path = fetchurl { 10123 path = fetchurl {
9692 name = "request_promise_core___request_promise_core_1.1.1.tgz"; 10124 name = "request_promise_core___request_promise_core_1.1.1.tgz";
@@ -9795,6 +10227,15 @@
9795 } 10227 }
9796 10228
9797 { 10229 {
10230 name = "resolve_dir___resolve_dir_1.0.1.tgz";
10231 path = fetchurl {
10232 name = "resolve_dir___resolve_dir_1.0.1.tgz";
10233 url = "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz";
10234 sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
10235 };
10236 }
10237
10238 {
9798 name = "resolve_from___resolve_from_1.0.1.tgz"; 10239 name = "resolve_from___resolve_from_1.0.1.tgz";
9799 path = fetchurl { 10240 path = fetchurl {
9800 name = "resolve_from___resolve_from_1.0.1.tgz"; 10241 name = "resolve_from___resolve_from_1.0.1.tgz";
@@ -9840,11 +10281,20 @@
9840 } 10281 }
9841 10282
9842 { 10283 {
9843 name = "resolve___resolve_1.9.0.tgz"; 10284 name = "resolve___resolve_1.11.0.tgz";
9844 path = fetchurl { 10285 path = fetchurl {
9845 name = "resolve___resolve_1.9.0.tgz"; 10286 name = "resolve___resolve_1.11.0.tgz";
9846 url = "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz"; 10287 url = "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz";
9847 sha1 = "a14c6fdfa8f92a7df1d996cb7105fa744658ea06"; 10288 sha1 = "4014870ba296176b86343d50b60f3b50609ce232";
10289 };
10290 }
10291
10292 {
10293 name = "restore_cursor___restore_cursor_1.0.1.tgz";
10294 path = fetchurl {
10295 name = "restore_cursor___restore_cursor_1.0.1.tgz";
10296 url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz";
10297 sha1 = "34661f46886327fed2991479152252df92daa541";
9848 }; 10298 };
9849 } 10299 }
9850 10300
@@ -9885,11 +10335,11 @@
9885 } 10335 }
9886 10336
9887 { 10337 {
9888 name = "rimraf___rimraf_2.6.2.tgz"; 10338 name = "rimraf___rimraf_2.6.3.tgz";
9889 path = fetchurl { 10339 path = fetchurl {
9890 name = "rimraf___rimraf_2.6.2.tgz"; 10340 name = "rimraf___rimraf_2.6.3.tgz";
9891 url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz"; 10341 url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz";
9892 sha1 = "2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"; 10342 sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab";
9893 }; 10343 };
9894 } 10344 }
9895 10345
@@ -9921,6 +10371,15 @@
9921 } 10371 }
9922 10372
9923 { 10373 {
10374 name = "run_async___run_async_0.1.0.tgz";
10375 path = fetchurl {
10376 name = "run_async___run_async_0.1.0.tgz";
10377 url = "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz";
10378 sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389";
10379 };
10380 }
10381
10382 {
9924 name = "run_async___run_async_2.3.0.tgz"; 10383 name = "run_async___run_async_2.3.0.tgz";
9925 path = fetchurl { 10384 path = fetchurl {
9926 name = "run_async___run_async_2.3.0.tgz"; 10385 name = "run_async___run_async_2.3.0.tgz";
@@ -9939,6 +10398,15 @@
9939 } 10398 }
9940 10399
9941 { 10400 {
10401 name = "rx_lite___rx_lite_3.1.2.tgz";
10402 path = fetchurl {
10403 name = "rx_lite___rx_lite_3.1.2.tgz";
10404 url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz";
10405 sha1 = "19ce502ca572665f3b647b10939f97fd1615f102";
10406 };
10407 }
10408
10409 {
9942 name = "rxjs___rxjs_6.3.3.tgz"; 10410 name = "rxjs___rxjs_6.3.3.tgz";
9943 path = fetchurl { 10411 path = fetchurl {
9944 name = "rxjs___rxjs_6.3.3.tgz"; 10412 name = "rxjs___rxjs_6.3.3.tgz";
@@ -9975,11 +10443,20 @@
9975 } 10443 }
9976 10444
9977 { 10445 {
9978 name = "sane___sane_2.5.2.tgz"; 10446 name = "sane___sane_4.0.3.tgz";
9979 path = fetchurl { 10447 path = fetchurl {
9980 name = "sane___sane_2.5.2.tgz"; 10448 name = "sane___sane_4.0.3.tgz";
9981 url = "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz"; 10449 url = "https://registry.yarnpkg.com/sane/-/sane-4.0.3.tgz";
9982 sha1 = "b4dc1861c21b427e929507a3e751e2a2cb8ab3fa"; 10450 sha1 = "e878c3f19e25cc57fbb734602f48f8a97818b181";
10451 };
10452 }
10453
10454 {
10455 name = "sass_lint___sass_lint_1.13.1.tgz";
10456 path = fetchurl {
10457 name = "sass_lint___sass_lint_1.13.1.tgz";
10458 url = "https://registry.yarnpkg.com/sass-lint/-/sass-lint-1.13.1.tgz";
10459 sha1 = "5fd2b2792e9215272335eb0f0dc607f61e8acc8f";
9983 }; 10460 };
9984 } 10461 }
9985 10462
@@ -9993,11 +10470,11 @@
9993 } 10470 }
9994 10471
9995 { 10472 {
9996 name = "sass___sass_1.15.2.tgz"; 10473 name = "sass___sass_1.20.3.tgz";
9997 path = fetchurl { 10474 path = fetchurl {
9998 name = "sass___sass_1.15.2.tgz"; 10475 name = "sass___sass_1.20.3.tgz";
9999 url = "https://registry.yarnpkg.com/sass/-/sass-1.15.2.tgz"; 10476 url = "https://registry.yarnpkg.com/sass/-/sass-1.20.3.tgz";
10000 sha1 = "539f464a61e29a9e4f560ec9dc2ccc5236db8474"; 10477 sha1 = "18284a7bac6eab9cbb80453288473194f29efb84";
10001 }; 10478 };
10002 } 10479 }
10003 10480
@@ -10011,20 +10488,11 @@
10011 } 10488 }
10012 10489
10013 { 10490 {
10014 name = "scheduler___scheduler_0.12.0.tgz"; 10491 name = "scheduler___scheduler_0.13.6.tgz";
10015 path = fetchurl { 10492 path = fetchurl {
10016 name = "scheduler___scheduler_0.12.0.tgz"; 10493 name = "scheduler___scheduler_0.13.6.tgz";
10017 url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.12.0.tgz"; 10494 url = "https://registry.yarnpkg.com/scheduler/-/scheduler-0.13.6.tgz";
10018 sha1 = "8ab17699939c0aedc5a196a657743c496538647b"; 10495 sha1 = "466a4ec332467b31a91b9bf74e5347072e4cd889";
10019 };
10020 }
10021
10022 {
10023 name = "schema_utils___schema_utils_0.4.7.tgz";
10024 path = fetchurl {
10025 name = "schema_utils___schema_utils_0.4.7.tgz";
10026 url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz";
10027 sha1 = "ba74f597d2be2ea880131746ee17d0a093c68187";
10028 }; 10496 };
10029 } 10497 }
10030 10498
@@ -10065,11 +10533,11 @@
10065 } 10533 }
10066 10534
10067 { 10535 {
10068 name = "semver___semver_5.6.0.tgz"; 10536 name = "semver___semver_5.7.0.tgz";
10069 path = fetchurl { 10537 path = fetchurl {
10070 name = "semver___semver_5.6.0.tgz"; 10538 name = "semver___semver_5.7.0.tgz";
10071 url = "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz"; 10539 url = "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz";
10072 sha1 = "7e74256fbaa49c75aa7c7a205cc22799cac80004"; 10540 sha1 = "790a7cf6fea5459bac96110b29b60412dc8ff96b";
10073 }; 10541 };
10074 } 10542 }
10075 10543
@@ -10083,11 +10551,20 @@
10083 } 10551 }
10084 10552
10085 { 10553 {
10086 name = "send___send_0.16.2.tgz"; 10554 name = "semver___semver_6.1.1.tgz";
10555 path = fetchurl {
10556 name = "semver___semver_6.1.1.tgz";
10557 url = "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz";
10558 sha1 = "53f53da9b30b2103cd4f15eab3a18ecbcb210c9b";
10559 };
10560 }
10561
10562 {
10563 name = "send___send_0.17.1.tgz";
10087 path = fetchurl { 10564 path = fetchurl {
10088 name = "send___send_0.16.2.tgz"; 10565 name = "send___send_0.17.1.tgz";
10089 url = "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz"; 10566 url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz";
10090 sha1 = "6ecca1e0f8c156d141597559848df64730a6bbc1"; 10567 sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8";
10091 }; 10568 };
10092 } 10569 }
10093 10570
@@ -10101,6 +10578,15 @@
10101 } 10578 }
10102 10579
10103 { 10580 {
10581 name = "serialize_javascript___serialize_javascript_1.7.0.tgz";
10582 path = fetchurl {
10583 name = "serialize_javascript___serialize_javascript_1.7.0.tgz";
10584 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz";
10585 sha1 = "d6e0dfb2a3832a8c94468e6eb1db97e55a192a65";
10586 };
10587 }
10588
10589 {
10104 name = "serve_index___serve_index_1.9.1.tgz"; 10590 name = "serve_index___serve_index_1.9.1.tgz";
10105 path = fetchurl { 10591 path = fetchurl {
10106 name = "serve_index___serve_index_1.9.1.tgz"; 10592 name = "serve_index___serve_index_1.9.1.tgz";
@@ -10110,11 +10596,11 @@
10110 } 10596 }
10111 10597
10112 { 10598 {
10113 name = "serve_static___serve_static_1.13.2.tgz"; 10599 name = "serve_static___serve_static_1.14.1.tgz";
10114 path = fetchurl { 10600 path = fetchurl {
10115 name = "serve_static___serve_static_1.13.2.tgz"; 10601 name = "serve_static___serve_static_1.14.1.tgz";
10116 url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.13.2.tgz"; 10602 url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz";
10117 sha1 = "095e8472fd5b46237db50ce486a43f4b86c6cec1"; 10603 sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9";
10118 }; 10604 };
10119 } 10605 }
10120 10606
@@ -10164,6 +10650,15 @@
10164 } 10650 }
10165 10651
10166 { 10652 {
10653 name = "setprototypeof___setprototypeof_1.1.1.tgz";
10654 path = fetchurl {
10655 name = "setprototypeof___setprototypeof_1.1.1.tgz";
10656 url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz";
10657 sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683";
10658 };
10659 }
10660
10661 {
10167 name = "sha.js___sha.js_2.4.11.tgz"; 10662 name = "sha.js___sha.js_2.4.11.tgz";
10168 path = fetchurl { 10663 path = fetchurl {
10169 name = "sha.js___sha.js_2.4.11.tgz"; 10664 name = "sha.js___sha.js_2.4.11.tgz";
@@ -10200,6 +10695,15 @@
10200 } 10695 }
10201 10696
10202 { 10697 {
10698 name = "shelljs___shelljs_0.6.1.tgz";
10699 path = fetchurl {
10700 name = "shelljs___shelljs_0.6.1.tgz";
10701 url = "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz";
10702 sha1 = "ec6211bed1920442088fe0f70b2837232ed2c8a8";
10703 };
10704 }
10705
10706 {
10203 name = "shellwords___shellwords_0.1.1.tgz"; 10707 name = "shellwords___shellwords_0.1.1.tgz";
10204 path = fetchurl { 10708 path = fetchurl {
10205 name = "shellwords___shellwords_0.1.1.tgz"; 10709 name = "shellwords___shellwords_0.1.1.tgz";
@@ -10227,11 +10731,11 @@
10227 } 10731 }
10228 10732
10229 { 10733 {
10230 name = "sisteransi___sisteransi_0.1.1.tgz"; 10734 name = "sisteransi___sisteransi_1.0.0.tgz";
10231 path = fetchurl { 10735 path = fetchurl {
10232 name = "sisteransi___sisteransi_0.1.1.tgz"; 10736 name = "sisteransi___sisteransi_1.0.0.tgz";
10233 url = "https://registry.yarnpkg.com/sisteransi/-/sisteransi-0.1.1.tgz"; 10737 url = "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz";
10234 sha1 = "5431447d5f7d1675aac667ccd0b865a4994cb3ce"; 10738 sha1 = "77d9622ff909080f1c19e5f4a1df0c1b0a27b88c";
10235 }; 10739 };
10236 } 10740 }
10237 10741
@@ -10245,6 +10749,24 @@
10245 } 10749 }
10246 10750
10247 { 10751 {
10752 name = "slash___slash_2.0.0.tgz";
10753 path = fetchurl {
10754 name = "slash___slash_2.0.0.tgz";
10755 url = "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz";
10756 sha1 = "de552851a1759df3a8f206535442f5ec4ddeab44";
10757 };
10758 }
10759
10760 {
10761 name = "slice_ansi___slice_ansi_0.0.4.tgz";
10762 path = fetchurl {
10763 name = "slice_ansi___slice_ansi_0.0.4.tgz";
10764 url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz";
10765 sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35";
10766 };
10767 }
10768
10769 {
10248 name = "slice_ansi___slice_ansi_2.0.0.tgz"; 10770 name = "slice_ansi___slice_ansi_2.0.0.tgz";
10249 path = fetchurl { 10771 path = fetchurl {
10250 name = "slice_ansi___slice_ansi_2.0.0.tgz"; 10772 name = "slice_ansi___slice_ansi_2.0.0.tgz";
@@ -10317,20 +10839,20 @@
10317 } 10839 }
10318 10840
10319 { 10841 {
10320 name = "source_map_support___source_map_support_0.4.18.tgz"; 10842 name = "source_map_support___source_map_support_0.5.9.tgz";
10321 path = fetchurl { 10843 path = fetchurl {
10322 name = "source_map_support___source_map_support_0.4.18.tgz"; 10844 name = "source_map_support___source_map_support_0.5.9.tgz";
10323 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz"; 10845 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz";
10324 sha1 = "0286a6de8be42641338594e97ccea75f0a2c585f"; 10846 sha1 = "41bc953b2534267ea2d605bccfa7bfa3111ced5f";
10325 }; 10847 };
10326 } 10848 }
10327 10849
10328 { 10850 {
10329 name = "source_map_support___source_map_support_0.5.9.tgz"; 10851 name = "source_map_support___source_map_support_0.5.12.tgz";
10330 path = fetchurl { 10852 path = fetchurl {
10331 name = "source_map_support___source_map_support_0.5.9.tgz"; 10853 name = "source_map_support___source_map_support_0.5.12.tgz";
10332 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.9.tgz"; 10854 url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz";
10333 sha1 = "41bc953b2534267ea2d605bccfa7bfa3111ced5f"; 10855 sha1 = "b4f3b10d51857a5af0138d3ce8003b201613d599";
10334 }; 10856 };
10335 } 10857 }
10336 10858
@@ -10362,6 +10884,15 @@
10362 } 10884 }
10363 10885
10364 { 10886 {
10887 name = "source_map___source_map_0.7.3.tgz";
10888 path = fetchurl {
10889 name = "source_map___source_map_0.7.3.tgz";
10890 url = "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz";
10891 sha1 = "5302f8169031735226544092e64981f751750383";
10892 };
10893 }
10894
10895 {
10365 name = "spdx_correct___spdx_correct_3.1.0.tgz"; 10896 name = "spdx_correct___spdx_correct_3.1.0.tgz";
10366 path = fetchurl { 10897 path = fetchurl {
10367 name = "spdx_correct___spdx_correct_3.1.0.tgz"; 10898 name = "spdx_correct___spdx_correct_3.1.0.tgz";
@@ -10497,15 +11028,6 @@
10497 } 11028 }
10498 11029
10499 { 11030 {
10500 name = "statuses___statuses_1.4.0.tgz";
10501 path = fetchurl {
10502 name = "statuses___statuses_1.4.0.tgz";
10503 url = "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz";
10504 sha1 = "bb73d446da2796106efcc1b601a253d6c46bd087";
10505 };
10506 }
10507
10508 {
10509 name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11031 name = "stealthy_require___stealthy_require_1.1.1.tgz";
10510 path = fetchurl { 11032 path = fetchurl {
10511 name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11033 name = "stealthy_require___stealthy_require_1.1.1.tgz";
@@ -10650,15 +11172,6 @@
10650 } 11172 }
10651 11173
10652 { 11174 {
10653 name = "strip_bom___strip_bom_2.0.0.tgz";
10654 path = fetchurl {
10655 name = "strip_bom___strip_bom_2.0.0.tgz";
10656 url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz";
10657 sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e";
10658 };
10659 }
10660
10661 {
10662 name = "strip_eof___strip_eof_1.0.0.tgz"; 11175 name = "strip_eof___strip_eof_1.0.0.tgz";
10663 path = fetchurl { 11176 path = fetchurl {
10664 name = "strip_eof___strip_eof_1.0.0.tgz"; 11177 name = "strip_eof___strip_eof_1.0.0.tgz";
@@ -10677,11 +11190,11 @@
10677 } 11190 }
10678 11191
10679 { 11192 {
10680 name = "style_loader___style_loader_0.23.1.tgz"; 11193 name = "strip_json_comments___strip_json_comments_1.0.4.tgz";
10681 path = fetchurl { 11194 path = fetchurl {
10682 name = "style_loader___style_loader_0.23.1.tgz"; 11195 name = "strip_json_comments___strip_json_comments_1.0.4.tgz";
10683 url = "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz"; 11196 url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
10684 sha1 = "cb9154606f3e771ab6c4ab637026a1049174d925"; 11197 sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
10685 }; 11198 };
10686 } 11199 }
10687 11200
@@ -10695,6 +11208,24 @@
10695 } 11208 }
10696 11209
10697 { 11210 {
11211 name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz";
11212 path = fetchurl {
11213 name = "stylis_rule_sheet___stylis_rule_sheet_0.0.10.tgz";
11214 url = "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz";
11215 sha1 = "44e64a2b076643f4b52e5ff71efc04d8c3c4a430";
11216 };
11217 }
11218
11219 {
11220 name = "stylis___stylis_3.5.4.tgz";
11221 path = fetchurl {
11222 name = "stylis___stylis_3.5.4.tgz";
11223 url = "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz";
11224 sha1 = "f665f25f5e299cf3d64654ab949a57c768b73fbe";
11225 };
11226 }
11227
11228 {
10698 name = "substring_trie___substring_trie_1.0.2.tgz"; 11229 name = "substring_trie___substring_trie_1.0.2.tgz";
10699 path = fetchurl { 11230 path = fetchurl {
10700 name = "substring_trie___substring_trie_1.0.2.tgz"; 11231 name = "substring_trie___substring_trie_1.0.2.tgz";
@@ -10731,6 +11262,15 @@
10731 } 11262 }
10732 11263
10733 { 11264 {
11265 name = "supports_color___supports_color_6.1.0.tgz";
11266 path = fetchurl {
11267 name = "supports_color___supports_color_6.1.0.tgz";
11268 url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz";
11269 sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3";
11270 };
11271 }
11272
11273 {
10734 name = "svgo___svgo_1.1.1.tgz"; 11274 name = "svgo___svgo_1.1.1.tgz";
10735 path = fetchurl { 11275 path = fetchurl {
10736 name = "svgo___svgo_1.1.1.tgz"; 11276 name = "svgo___svgo_1.1.1.tgz";
@@ -10758,6 +11298,15 @@
10758 } 11298 }
10759 11299
10760 { 11300 {
11301 name = "table___table_3.8.3.tgz";
11302 path = fetchurl {
11303 name = "table___table_3.8.3.tgz";
11304 url = "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz";
11305 sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f";
11306 };
11307 }
11308
11309 {
10761 name = "table___table_5.1.1.tgz"; 11310 name = "table___table_5.1.1.tgz";
10762 path = fetchurl { 11311 path = fetchurl {
10763 name = "table___table_5.1.1.tgz"; 11312 name = "table___table_5.1.1.tgz";
@@ -10794,29 +11343,29 @@
10794 } 11343 }
10795 11344
10796 { 11345 {
10797 name = "terser_webpack_plugin___terser_webpack_plugin_1.2.1.tgz"; 11346 name = "terser_webpack_plugin___terser_webpack_plugin_1.3.0.tgz";
10798 path = fetchurl { 11347 path = fetchurl {
10799 name = "terser_webpack_plugin___terser_webpack_plugin_1.2.1.tgz"; 11348 name = "terser_webpack_plugin___terser_webpack_plugin_1.3.0.tgz";
10800 url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.1.tgz"; 11349 url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz";
10801 sha1 = "7545da9ae5f4f9ae6a0ac961eb46f5e7c845cc26"; 11350 sha1 = "69aa22426299f4b5b3775cbed8cb2c5d419aa1d4";
10802 }; 11351 };
10803 } 11352 }
10804 11353
10805 { 11354 {
10806 name = "terser___terser_3.14.0.tgz"; 11355 name = "terser___terser_4.0.0.tgz";
10807 path = fetchurl { 11356 path = fetchurl {
10808 name = "terser___terser_3.14.0.tgz"; 11357 name = "terser___terser_4.0.0.tgz";
10809 url = "https://registry.yarnpkg.com/terser/-/terser-3.14.0.tgz"; 11358 url = "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz";
10810 sha1 = "49a8ddf34a1308a901d787dab03a42c51b557447"; 11359 sha1 = "ef356f6f359a963e2cc675517f21c1c382877374";
10811 }; 11360 };
10812 } 11361 }
10813 11362
10814 { 11363 {
10815 name = "test_exclude___test_exclude_4.2.3.tgz"; 11364 name = "test_exclude___test_exclude_5.1.0.tgz";
10816 path = fetchurl { 11365 path = fetchurl {
10817 name = "test_exclude___test_exclude_4.2.3.tgz"; 11366 name = "test_exclude___test_exclude_5.1.0.tgz";
10818 url = "https://registry.yarnpkg.com/test-exclude/-/test-exclude-4.2.3.tgz"; 11367 url = "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.1.0.tgz";
10819 sha1 = "a9a5e64474e4398339245a0a769ad7c2f4a97c20"; 11368 sha1 = "6ba6b25179d2d38724824661323b73e03c0c1de1";
10820 }; 11369 };
10821 } 11370 }
10822 11371
@@ -10929,15 +11478,6 @@
10929 } 11478 }
10930 11479
10931 { 11480 {
10932 name = "to_fast_properties___to_fast_properties_1.0.3.tgz";
10933 path = fetchurl {
10934 name = "to_fast_properties___to_fast_properties_1.0.3.tgz";
10935 url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
10936 sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
10937 };
10938 }
10939
10940 {
10941 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 11481 name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
10942 path = fetchurl { 11482 path = fetchurl {
10943 name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; 11483 name = "to_fast_properties___to_fast_properties_2.0.0.tgz";
@@ -10974,6 +11514,24 @@
10974 } 11514 }
10975 11515
10976 { 11516 {
11517 name = "toidentifier___toidentifier_1.0.0.tgz";
11518 path = fetchurl {
11519 name = "toidentifier___toidentifier_1.0.0.tgz";
11520 url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz";
11521 sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553";
11522 };
11523 }
11524
11525 {
11526 name = "touch___touch_2.0.2.tgz";
11527 path = fetchurl {
11528 name = "touch___touch_2.0.2.tgz";
11529 url = "https://registry.yarnpkg.com/touch/-/touch-2.0.2.tgz";
11530 sha1 = "ca0b2a3ae3211246a61b16ba9e6cbf1596287164";
11531 };
11532 }
11533
11534 {
10977 name = "tough_cookie___tough_cookie_2.5.0.tgz"; 11535 name = "tough_cookie___tough_cookie_2.5.0.tgz";
10978 path = fetchurl { 11536 path = fetchurl {
10979 name = "tough_cookie___tough_cookie_2.5.0.tgz"; 11537 name = "tough_cookie___tough_cookie_2.5.0.tgz";
@@ -11064,11 +11622,11 @@
11064 } 11622 }
11065 11623
11066 { 11624 {
11067 name = "type_is___type_is_1.6.16.tgz"; 11625 name = "type_is___type_is_1.6.18.tgz";
11068 path = fetchurl { 11626 path = fetchurl {
11069 name = "type_is___type_is_1.6.16.tgz"; 11627 name = "type_is___type_is_1.6.18.tgz";
11070 url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.16.tgz"; 11628 url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz";
11071 sha1 = "f89ce341541c672b25ee7ae3c73dee3b2be50194"; 11629 sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131";
11072 }; 11630 };
11073 } 11631 }
11074 11632
@@ -11100,15 +11658,6 @@
11100 } 11658 }
11101 11659
11102 { 11660 {
11103 name = "uglifyjs_webpack_plugin___uglifyjs_webpack_plugin_2.1.1.tgz";
11104 path = fetchurl {
11105 name = "uglifyjs_webpack_plugin___uglifyjs_webpack_plugin_2.1.1.tgz";
11106 url = "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.1.1.tgz";
11107 sha1 = "6937d7513a37280d4792f1fb536bef35e08e420a";
11108 };
11109 }
11110
11111 {
11112 name = "unicode_astral_regex___unicode_astral_regex_1.0.1.tgz"; 11661 name = "unicode_astral_regex___unicode_astral_regex_1.0.1.tgz";
11113 path = fetchurl { 11662 path = fetchurl {
11114 name = "unicode_astral_regex___unicode_astral_regex_1.0.1.tgz"; 11663 name = "unicode_astral_regex___unicode_astral_regex_1.0.1.tgz";
@@ -11136,20 +11685,20 @@
11136 } 11685 }
11137 11686
11138 { 11687 {
11139 name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.0.2.tgz"; 11688 name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz";
11140 path = fetchurl { 11689 path = fetchurl {
11141 name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.0.2.tgz"; 11690 name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz";
11142 url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.0.2.tgz"; 11691 url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz";
11143 sha1 = "9f1dc76926d6ccf452310564fd834ace059663d4"; 11692 sha1 = "5b4b426e08d13a80365e0d657ac7a6c1ec46a277";
11144 }; 11693 };
11145 } 11694 }
11146 11695
11147 { 11696 {
11148 name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.4.tgz"; 11697 name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz";
11149 path = fetchurl { 11698 path = fetchurl {
11150 name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.4.tgz"; 11699 name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz";
11151 url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz"; 11700 url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz";
11152 sha1 = "5a533f31b4317ea76f17d807fa0d116546111dd0"; 11701 sha1 = "a9cc6cc7ce63a0a3023fc99e341b94431d405a57";
11153 }; 11702 };
11154 } 11703 }
11155 11704
@@ -11199,6 +11748,15 @@
11199 } 11748 }
11200 11749
11201 { 11750 {
11751 name = "universalify___universalify_0.1.2.tgz";
11752 path = fetchurl {
11753 name = "universalify___universalify_0.1.2.tgz";
11754 url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz";
11755 sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66";
11756 };
11757 }
11758
11759 {
11202 name = "unpipe___unpipe_1.0.0.tgz"; 11760 name = "unpipe___unpipe_1.0.0.tgz";
11203 path = fetchurl { 11761 path = fetchurl {
11204 name = "unpipe___unpipe_1.0.0.tgz"; 11762 name = "unpipe___unpipe_1.0.0.tgz";
@@ -11226,11 +11784,11 @@
11226 } 11784 }
11227 11785
11228 { 11786 {
11229 name = "upath___upath_1.1.0.tgz"; 11787 name = "upath___upath_1.1.2.tgz";
11230 path = fetchurl { 11788 path = fetchurl {
11231 name = "upath___upath_1.1.0.tgz"; 11789 name = "upath___upath_1.1.2.tgz";
11232 url = "https://registry.yarnpkg.com/upath/-/upath-1.1.0.tgz"; 11790 url = "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz";
11233 sha1 = "35256597e46a581db4793d0ce47fa9aebfc9fabd"; 11791 sha1 = "3db658600edaeeccbe6db5e684d67ee8c2acd068";
11234 }; 11792 };
11235 } 11793 }
11236 11794
@@ -11280,6 +11838,15 @@
11280 } 11838 }
11281 11839
11282 { 11840 {
11841 name = "user_home___user_home_2.0.0.tgz";
11842 path = fetchurl {
11843 name = "user_home___user_home_2.0.0.tgz";
11844 url = "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz";
11845 sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f";
11846 };
11847 }
11848
11849 {
11283 name = "util_deprecate___util_deprecate_1.0.2.tgz"; 11850 name = "util_deprecate___util_deprecate_1.0.2.tgz";
11284 path = fetchurl { 11851 path = fetchurl {
11285 name = "util_deprecate___util_deprecate_1.0.2.tgz"; 11852 name = "util_deprecate___util_deprecate_1.0.2.tgz";
@@ -11334,15 +11901,6 @@
11334 } 11901 }
11335 11902
11336 { 11903 {
11337 name = "uws___uws_10.148.0.tgz";
11338 path = fetchurl {
11339 name = "uws___uws_10.148.0.tgz";
11340 url = "https://registry.yarnpkg.com/uws/-/uws-10.148.0.tgz";
11341 sha1 = "3fcd35f083ca515e091cd33b2d78f0f51a666215";
11342 };
11343 }
11344
11345 {
11346 name = "v8_compile_cache___v8_compile_cache_2.0.2.tgz"; 11904 name = "v8_compile_cache___v8_compile_cache_2.0.2.tgz";
11347 path = fetchurl { 11905 path = fetchurl {
11348 name = "v8_compile_cache___v8_compile_cache_2.0.2.tgz"; 11906 name = "v8_compile_cache___v8_compile_cache_2.0.2.tgz";
@@ -11442,15 +12000,6 @@
11442 } 12000 }
11443 12001
11444 { 12002 {
11445 name = "watch___watch_0.18.0.tgz";
11446 path = fetchurl {
11447 name = "watch___watch_0.18.0.tgz";
11448 url = "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz";
11449 sha1 = "28095476c6df7c90c963138990c0a5423eb4b986";
11450 };
11451 }
11452
11453 {
11454 name = "watchpack___watchpack_1.6.0.tgz"; 12003 name = "watchpack___watchpack_1.6.0.tgz";
11455 path = fetchurl { 12004 path = fetchurl {
11456 name = "watchpack___watchpack_1.6.0.tgz"; 12005 name = "watchpack___watchpack_1.6.0.tgz";
@@ -11487,38 +12036,38 @@
11487 } 12036 }
11488 12037
11489 { 12038 {
11490 name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.0.3.tgz"; 12039 name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.3.2.tgz";
11491 path = fetchurl { 12040 path = fetchurl {
11492 name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.0.3.tgz"; 12041 name = "webpack_bundle_analyzer___webpack_bundle_analyzer_3.3.2.tgz";
11493 url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.0.3.tgz"; 12042 url = "https://registry.yarnpkg.com/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.3.2.tgz";
11494 sha1 = "dbc7fff8f52058b6714a20fddf309d0790e3e0a0"; 12043 sha1 = "3da733a900f515914e729fcebcd4c40dde71fc6f";
11495 }; 12044 };
11496 } 12045 }
11497 12046
11498 { 12047 {
11499 name = "webpack_cli___webpack_cli_3.1.2.tgz"; 12048 name = "webpack_cli___webpack_cli_3.3.4.tgz";
11500 path = fetchurl { 12049 path = fetchurl {
11501 name = "webpack_cli___webpack_cli_3.1.2.tgz"; 12050 name = "webpack_cli___webpack_cli_3.3.4.tgz";
11502 url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.1.2.tgz"; 12051 url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.4.tgz";
11503 sha1 = "17d7e01b77f89f884a2bbf9db545f0f6a648e746"; 12052 sha1 = "de27e281c48a897b8c219cb093e261d5f6afe44a";
11504 }; 12053 };
11505 } 12054 }
11506 12055
11507 { 12056 {
11508 name = "webpack_dev_middleware___webpack_dev_middleware_3.4.0.tgz"; 12057 name = "webpack_dev_middleware___webpack_dev_middleware_3.7.0.tgz";
11509 path = fetchurl { 12058 path = fetchurl {
11510 name = "webpack_dev_middleware___webpack_dev_middleware_3.4.0.tgz"; 12059 name = "webpack_dev_middleware___webpack_dev_middleware_3.7.0.tgz";
11511 url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.4.0.tgz"; 12060 url = "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz";
11512 sha1 = "1132fecc9026fd90f0ecedac5cbff75d1fb45890"; 12061 sha1 = "ef751d25f4e9a5c8a35da600c5fda3582b5c6cff";
11513 }; 12062 };
11514 } 12063 }
11515 12064
11516 { 12065 {
11517 name = "webpack_dev_server___webpack_dev_server_3.1.14.tgz"; 12066 name = "webpack_dev_server___webpack_dev_server_3.5.1.tgz";
11518 path = fetchurl { 12067 path = fetchurl {
11519 name = "webpack_dev_server___webpack_dev_server_3.1.14.tgz"; 12068 name = "webpack_dev_server___webpack_dev_server_3.5.1.tgz";
11520 url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.1.14.tgz"; 12069 url = "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.5.1.tgz";
11521 sha1 = "60fb229b997fc5a0a1fc6237421030180959d469"; 12070 sha1 = "4290ac709bb989dc7382c912899f79fd5677dabf";
11522 }; 12071 };
11523 } 12072 }
11524 12073
@@ -11532,11 +12081,11 @@
11532 } 12081 }
11533 12082
11534 { 12083 {
11535 name = "webpack_merge___webpack_merge_4.1.5.tgz"; 12084 name = "webpack_merge___webpack_merge_4.2.1.tgz";
11536 path = fetchurl { 12085 path = fetchurl {
11537 name = "webpack_merge___webpack_merge_4.1.5.tgz"; 12086 name = "webpack_merge___webpack_merge_4.2.1.tgz";
11538 url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.1.5.tgz"; 12087 url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz";
11539 sha1 = "2be31e846c20767d1bef56bdca64c328a681190a"; 12088 sha1 = "5e923cf802ea2ace4fd5af1d3247368a633489b4";
11540 }; 12089 };
11541 } 12090 }
11542 12091
@@ -11550,11 +12099,11 @@
11550 } 12099 }
11551 12100
11552 { 12101 {
11553 name = "webpack___webpack_4.28.3.tgz"; 12102 name = "webpack___webpack_4.34.0.tgz";
11554 path = fetchurl { 12103 path = fetchurl {
11555 name = "webpack___webpack_4.28.3.tgz"; 12104 name = "webpack___webpack_4.34.0.tgz";
11556 url = "https://registry.yarnpkg.com/webpack/-/webpack-4.28.3.tgz"; 12105 url = "https://registry.yarnpkg.com/webpack/-/webpack-4.34.0.tgz";
11557 sha1 = "8acef6e77fad8a01bfd0c2b25aa3636d46511874"; 12106 sha1 = "a4c30129482f7b4ece4c0842002dedf2b56fab58";
11558 }; 12107 };
11559 } 12108 }
11560 12109
@@ -11676,11 +12225,11 @@
11676 } 12225 }
11677 12226
11678 { 12227 {
11679 name = "worker_farm___worker_farm_1.6.0.tgz"; 12228 name = "worker_farm___worker_farm_1.7.0.tgz";
11680 path = fetchurl { 12229 path = fetchurl {
11681 name = "worker_farm___worker_farm_1.6.0.tgz"; 12230 name = "worker_farm___worker_farm_1.7.0.tgz";
11682 url = "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz"; 12231 url = "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz";
11683 sha1 = "aecc405976fab5a95526180846f0dba288f3a4a0"; 12232 sha1 = "26a94c5391bbca926152002f69b84a4bf772e5a8";
11684 }; 12233 };
11685 } 12234 }
11686 12235
@@ -11703,11 +12252,11 @@
11703 } 12252 }
11704 12253
11705 { 12254 {
11706 name = "write_file_atomic___write_file_atomic_2.3.0.tgz"; 12255 name = "write_file_atomic___write_file_atomic_2.4.1.tgz";
11707 path = fetchurl { 12256 path = fetchurl {
11708 name = "write_file_atomic___write_file_atomic_2.3.0.tgz"; 12257 name = "write_file_atomic___write_file_atomic_2.4.1.tgz";
11709 url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.3.0.tgz"; 12258 url = "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz";
11710 sha1 = "1ff61575c2e2a4e8e510d6fa4e243cce183999ab"; 12259 sha1 = "d0b05463c188ae804396fd5ab2a370062af87529";
11711 }; 12260 };
11712 } 12261 }
11713 12262
@@ -11748,15 +12297,6 @@
11748 } 12297 }
11749 12298
11750 { 12299 {
11751 name = "xregexp___xregexp_4.0.0.tgz";
11752 path = fetchurl {
11753 name = "xregexp___xregexp_4.0.0.tgz";
11754 url = "https://registry.yarnpkg.com/xregexp/-/xregexp-4.0.0.tgz";
11755 sha1 = "e698189de49dd2a18cc5687b05e17c8e43943020";
11756 };
11757 }
11758
11759 {
11760 name = "xtend___xtend_4.0.1.tgz"; 12300 name = "xtend___xtend_4.0.1.tgz";
11761 path = fetchurl { 12301 path = fetchurl {
11762 name = "xtend___xtend_4.0.1.tgz"; 12302 name = "xtend___xtend_4.0.1.tgz";
@@ -11766,15 +12306,6 @@
11766 } 12306 }
11767 12307
11768 { 12308 {
11769 name = "y18n___y18n_3.2.1.tgz";
11770 path = fetchurl {
11771 name = "y18n___y18n_3.2.1.tgz";
11772 url = "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz";
11773 sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
11774 };
11775 }
11776
11777 {
11778 name = "y18n___y18n_4.0.0.tgz"; 12309 name = "y18n___y18n_4.0.0.tgz";
11779 path = fetchurl { 12310 path = fetchurl {
11780 name = "y18n___y18n_4.0.0.tgz"; 12311 name = "y18n___y18n_4.0.0.tgz";
@@ -11784,15 +12315,6 @@
11784 } 12315 }
11785 12316
11786 { 12317 {
11787 name = "yallist___yallist_2.1.2.tgz";
11788 path = fetchurl {
11789 name = "yallist___yallist_2.1.2.tgz";
11790 url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz";
11791 sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
11792 };
11793 }
11794
11795 {
11796 name = "yallist___yallist_3.0.3.tgz"; 12318 name = "yallist___yallist_3.0.3.tgz";
11797 path = fetchurl { 12319 path = fetchurl {
11798 name = "yallist___yallist_3.0.3.tgz"; 12320 name = "yallist___yallist_3.0.3.tgz";
@@ -11802,15 +12324,6 @@
11802 } 12324 }
11803 12325
11804 { 12326 {
11805 name = "yargs_parser___yargs_parser_10.1.0.tgz";
11806 path = fetchurl {
11807 name = "yargs_parser___yargs_parser_10.1.0.tgz";
11808 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz";
11809 sha1 = "7202265b89f7e9e9f2e5765e0fe735a905edbaa8";
11810 };
11811 }
11812
11813 {
11814 name = "yargs_parser___yargs_parser_11.1.1.tgz"; 12327 name = "yargs_parser___yargs_parser_11.1.1.tgz";
11815 path = fetchurl { 12328 path = fetchurl {
11816 name = "yargs_parser___yargs_parser_11.1.1.tgz"; 12329 name = "yargs_parser___yargs_parser_11.1.1.tgz";
@@ -11820,42 +12333,6 @@
11820 } 12333 }
11821 12334
11822 { 12335 {
11823 name = "yargs_parser___yargs_parser_7.0.0.tgz";
11824 path = fetchurl {
11825 name = "yargs_parser___yargs_parser_7.0.0.tgz";
11826 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz";
11827 sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9";
11828 };
11829 }
11830
11831 {
11832 name = "yargs_parser___yargs_parser_9.0.2.tgz";
11833 path = fetchurl {
11834 name = "yargs_parser___yargs_parser_9.0.2.tgz";
11835 url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-9.0.2.tgz";
11836 sha1 = "9ccf6a43460fe4ed40a9bb68f48d43b8a68cc077";
11837 };
11838 }
11839
11840 {
11841 name = "yargs___yargs_12.0.2.tgz";
11842 path = fetchurl {
11843 name = "yargs___yargs_12.0.2.tgz";
11844 url = "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz";
11845 sha1 = "fe58234369392af33ecbef53819171eff0f5aadc";
11846 };
11847 }
11848
11849 {
11850 name = "yargs___yargs_11.1.0.tgz";
11851 path = fetchurl {
11852 name = "yargs___yargs_11.1.0.tgz";
11853 url = "https://registry.yarnpkg.com/yargs/-/yargs-11.1.0.tgz";
11854 sha1 = "90b869934ed6e871115ea2ff58b03f4724ed2d77";
11855 };
11856 }
11857
11858 {
11859 name = "yargs___yargs_12.0.5.tgz"; 12336 name = "yargs___yargs_12.0.5.tgz";
11860 path = fetchurl { 12337 path = fetchurl {
11861 name = "yargs___yargs_12.0.5.tgz"; 12338 name = "yargs___yargs_12.0.5.tgz";
@@ -11863,14 +12340,5 @@
11863 sha1 = "05f5997b609647b64f66b81e3b4b10a368e7ad13"; 12340 sha1 = "05f5997b609647b64f66b81e3b4b10a368e7ad13";
11864 }; 12341 };
11865 } 12342 }
11866
11867 {
11868 name = "yargs___yargs_8.0.2.tgz";
11869 path = fetchurl {
11870 name = "yargs___yargs_8.0.2.tgz";
11871 url = "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz";
11872 sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360";
11873 };
11874 }
11875 ]; 12343 ];
11876} 12344}