-
Notifications
You must be signed in to change notification settings - Fork 2
/
yarn.nix
6077 lines (6077 loc) · 229 KB
/
yarn.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec {
offline_cache = linkFarm "offline" packages;
packages = [
{
name = "_babel_code_frame___code_frame_7.8.3.tgz";
path = fetchurl {
name = "_babel_code_frame___code_frame_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz";
sha1 = "33e25903d7481181534e12ec0a25f16b6fcf419e";
};
}
{
name = "_babel_compat_data___compat_data_7.8.1.tgz";
path = fetchurl {
name = "_babel_compat_data___compat_data_7.8.1.tgz";
url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.1.tgz";
sha1 = "fc0bbbb7991e4fb2b47e168e60f2cc2c41680be9";
};
}
{
name = "_babel_core___core_7.8.3.tgz";
path = fetchurl {
name = "_babel_core___core_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/core/-/core-7.8.3.tgz";
sha1 = "30b0ebb4dd1585de6923a0b4d179e0b9f5d82941";
};
}
{
name = "_babel_generator___generator_7.8.3.tgz";
path = fetchurl {
name = "_babel_generator___generator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.3.tgz";
sha1 = "0e22c005b0a94c1c74eafe19ef78ce53a4d45c03";
};
}
{
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz";
sha1 = "60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee";
};
}
{
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz";
sha1 = "c84097a427a061ac56a1c30ebf54b7b22d241503";
};
}
{
name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_builder_react_jsx___helper_builder_react_jsx_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz";
sha1 = "dee98d7d79cc1f003d80b76fe01c7f8945665ff6";
};
}
{
name = "_babel_helper_call_delegate___helper_call_delegate_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_call_delegate___helper_call_delegate_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz";
sha1 = "de82619898aa605d409c42be6ffb8d7204579692";
};
}
{
name = "_babel_helper_compilation_targets___helper_compilation_targets_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_compilation_targets___helper_compilation_targets_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.3.tgz";
sha1 = "2deedc816fd41dca7355ef39fd40c9ea69f0719a";
};
}
{
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz";
sha1 = "c774268c95ec07ee92476a3862b75cc2839beb79";
};
}
{
name = "_babel_helper_define_map___helper_define_map_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_define_map___helper_define_map_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz";
sha1 = "a0655cad5451c3760b726eba875f1cd8faa02c15";
};
}
{
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz";
sha1 = "a728dc5b4e89e30fc2dfc7d04fa28a930653f982";
};
}
{
name = "_babel_helper_function_name___helper_function_name_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_function_name___helper_function_name_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz";
sha1 = "eeeb665a01b1f11068e9fb86ad56a1cb1a824cca";
};
}
{
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz";
sha1 = "b894b947bd004381ce63ea1db9f08547e920abd5";
};
}
{
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz";
sha1 = "1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134";
};
}
{
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz";
sha1 = "659b710498ea6c1d9907e0c73f206eee7dadc24c";
};
}
{
name = "_babel_helper_module_imports___helper_module_imports_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_module_imports___helper_module_imports_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz";
sha1 = "7fe39589b39c016331b6b8c3f441e8f0b1419498";
};
}
{
name = "_babel_helper_module_transforms___helper_module_transforms_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_module_transforms___helper_module_transforms_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz";
sha1 = "d305e35d02bee720fbc2c3c3623aa0c316c01590";
};
}
{
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz";
sha1 = "7ed071813d09c75298ef4f208956006b6111ecb9";
};
}
{
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz";
sha1 = "9ea293be19babc0f52ff8ca88b34c3611b208670";
};
}
{
name = "_babel_helper_regex___helper_regex_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_regex___helper_regex_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz";
sha1 = "139772607d51b93f23effe72105b319d2a4c6965";
};
}
{
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz";
sha1 = "273c600d8b9bf5006142c1e35887d555c12edd86";
};
}
{
name = "_babel_helper_replace_supers___helper_replace_supers_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_replace_supers___helper_replace_supers_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz";
sha1 = "91192d25f6abbcd41da8a989d4492574fb1530bc";
};
}
{
name = "_babel_helper_simple_access___helper_simple_access_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_simple_access___helper_simple_access_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz";
sha1 = "7f8109928b4dab4654076986af575231deb639ae";
};
}
{
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz";
sha1 = "31a9f30070f91368a7182cf05f831781065fc7a9";
};
}
{
name = "_babel_helper_wrap_function___helper_wrap_function_7.8.3.tgz";
path = fetchurl {
name = "_babel_helper_wrap_function___helper_wrap_function_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz";
sha1 = "9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610";
};
}
{
name = "_babel_helpers___helpers_7.8.3.tgz";
path = fetchurl {
name = "_babel_helpers___helpers_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.3.tgz";
sha1 = "382fbb0382ce7c4ce905945ab9641d688336ce85";
};
}
{
name = "_babel_highlight___highlight_7.8.3.tgz";
path = fetchurl {
name = "_babel_highlight___highlight_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz";
sha1 = "28f173d04223eaaa59bc1d439a3836e6d1265797";
};
}
{
name = "_babel_parser___parser_7.8.3.tgz";
path = fetchurl {
name = "_babel_parser___parser_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.3.tgz";
sha1 = "790874091d2001c9be6ec426c2eed47bc7679081";
};
}
{
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz";
sha1 = "bad329c670b382589721b27540c7d288601c6e6f";
};
}
{
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz";
sha1 = "38c4fe555744826e97e2ae930b0fb4cc07e66054";
};
}
{
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz";
sha1 = "da5216b238a98b58a1e05d6852104b10f9a70d6b";
};
}
{
name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_nullish_coalescing_operator___plugin_proposal_nullish_coalescing_operator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz";
sha1 = "e4572253fdeed65cddeecfdab3f928afeb2fd5d2";
};
}
{
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz";
sha1 = "eb5ae366118ddca67bed583b53d7554cad9951bb";
};
}
{
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz";
sha1 = "9dee96ab1650eed88646ae9734ca167ac4a9c5c9";
};
}
{
name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_optional_chaining___plugin_proposal_optional_chaining_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz";
sha1 = "ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543";
};
}
{
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz";
sha1 = "b646c3adea5f98800c9ab45105ac34d06cd4a47f";
};
}
{
name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.8.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz";
sha1 = "a983fb1aeb2ec3f6ed042a210f640e90e786fe0d";
};
}
{
name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz";
sha1 = "62bf98b2da3cd21d626154fc96ee5b3cb68eacb3";
};
}
{
name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_flow___plugin_syntax_flow_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz";
sha1 = "f2c883bd61a6316f2c89380ae5122f923ba4527f";
};
}
{
name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz";
sha1 = "01ca21b668cd8218c9e640cb6dd88c5412b2c96a";
};
}
{
name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_jsx___plugin_syntax_jsx_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz";
sha1 = "521b06c83c40480f1e58b4fd33b92eceb1d6ea94";
};
}
{
name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_nullish_coalescing_operator___plugin_syntax_nullish_coalescing_operator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz";
sha1 = "167ed70368886081f74b5c36c65a88c03b66d1a9";
};
}
{
name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz";
sha1 = "60e225edcbd98a640332a2e72dd3e66f1af55871";
};
}
{
name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz";
sha1 = "6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1";
};
}
{
name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_optional_chaining___plugin_syntax_optional_chaining_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz";
sha1 = "4f69c2ab95167e0180cd5336613f8c5788f7d48a";
};
}
{
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz";
sha1 = "3acdece695e6b13aaf57fc291d1a800950c71391";
};
}
{
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz";
sha1 = "82776c2ed0cd9e1a49956daeb896024c9473b8b6";
};
}
{
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz";
sha1 = "4308fad0d9409d71eafb9b1a6ee35f9d64b64086";
};
}
{
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz";
sha1 = "437eec5b799b5852072084b3ae5ef66e8349e8a3";
};
}
{
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz";
sha1 = "97d35dab66857a437c166358b91d09050c868f3a";
};
}
{
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz";
sha1 = "46fd7a9d2bb9ea89ce88720477979fe0d71b21b8";
};
}
{
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz";
sha1 = "96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b";
};
}
{
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz";
sha1 = "20ddfbd9e4676906b1056ee60af88590cc7aaa0b";
};
}
{
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz";
sha1 = "c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e";
};
}
{
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz";
sha1 = "8d12df309aa537f272899c565ea1768e286e21f1";
};
}
{
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz";
sha1 = "581a6d7f56970e06bf51560cd64f5e947b70d7b7";
};
}
{
name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_flow_strip_types___plugin_transform_flow_strip_types_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.8.3.tgz";
sha1 = "da705a655466b2a9b36046b57bf0cbcd53551bd4";
};
}
{
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.3.tgz";
sha1 = "15f17bce2fc95c7d59a24b299e83e81cedc22e18";
};
}
{
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz";
sha1 = "279373cb27322aaad67c2683e776dfc47196ed8b";
};
}
{
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz";
sha1 = "aef239823d91994ec7b68e55193525d76dbd5dc1";
};
}
{
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz";
sha1 = "963fed4b620ac7cbf6029c755424029fa3a40410";
};
}
{
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz";
sha1 = "65606d44616b50225e76f5578f33c568a0b876a5";
};
}
{
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz";
sha1 = "df251706ec331bd058a34bdd72613915f82928a5";
};
}
{
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz";
sha1 = "d8bbf222c1dbe3661f440f2f00c16e9bb7d0d420";
};
}
{
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz";
sha1 = "592d578ce06c52f5b98b02f913d653ffe972661a";
};
}
{
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz";
sha1 = "a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c";
};
}
{
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz";
sha1 = "60cc2ae66d85c95ab540eb34babb6434d4c70c43";
};
}
{
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz";
sha1 = "ebb6a1e7a86ffa96858bd6ac0102d65944261725";
};
}
{
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.3.tgz";
sha1 = "7890576a13b17325d8b7d44cb37f21dc3bbdda59";
};
}
{
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz";
sha1 = "33194300d8539c1ed28c62ad5087ba3807b98263";
};
}
{
name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_react_jsx___plugin_transform_react_jsx_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz";
sha1 = "4220349c0390fdefa505365f68c103562ab2fc4a";
};
}
{
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.3.tgz";
sha1 = "b31031e8059c07495bf23614c97f3d9698bc6ec8";
};
}
{
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz";
sha1 = "9a0635ac4e665d29b162837dd3cc50745dfdf1f5";
};
}
{
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz";
sha1 = "28545216e023a832d4d3a1185ed492bcfeac08c8";
};
}
{
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz";
sha1 = "9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8";
};
}
{
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz";
sha1 = "be7a1290f81dae767475452199e1f76d6175b100";
};
}
{
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz";
sha1 = "7bfa4732b455ea6a43130adc0ba767ec0e402a80";
};
}
{
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.3.tgz";
sha1 = "5cffb216fb25c8c64ba6bf5f76ce49d3ab079f4d";
};
}
{
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.8.3.tgz";
path = fetchurl {
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz";
sha1 = "0cef36e3ba73e5c57273effb182f46b91a1ecaad";
};
}
{
name = "_babel_preset_env___preset_env_7.8.3.tgz";
path = fetchurl {
name = "_babel_preset_env___preset_env_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.3.tgz";
sha1 = "dc0fb2938f52bbddd79b3c861a4b3427dd3a6c54";
};
}
{
name = "_babel_runtime___runtime_7.8.3.tgz";
path = fetchurl {
name = "_babel_runtime___runtime_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.3.tgz";
sha1 = "0811944f73a6c926bb2ad35e918dcc1bfab279f1";
};
}
{
name = "_babel_template___template_7.8.3.tgz";
path = fetchurl {
name = "_babel_template___template_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/template/-/template-7.8.3.tgz";
sha1 = "e02ad04fe262a657809327f578056ca15fd4d1b8";
};
}
{
name = "_babel_traverse___traverse_7.8.3.tgz";
path = fetchurl {
name = "_babel_traverse___traverse_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.3.tgz";
sha1 = "a826215b011c9b4f73f3a893afbc05151358bf9a";
};
}
{
name = "_babel_types___types_7.8.3.tgz";
path = fetchurl {
name = "_babel_types___types_7.8.3.tgz";
url = "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz";
sha1 = "5a383dffa5416db1b73dedffd311ffd0788fb31c";
};
}
{
name = "_iarna_toml___toml_2.2.3.tgz";
path = fetchurl {
name = "_iarna_toml___toml_2.2.3.tgz";
url = "https://registry.yarnpkg.com/@iarna/toml/-/toml-2.2.3.tgz";
sha1 = "f060bf6eaafae4d56a7dac618980838b0696e2ab";
};
}
{
name = "_mrmlnc_readdir_enhanced___readdir_enhanced_2.2.1.tgz";
path = fetchurl {
name = "_mrmlnc_readdir_enhanced___readdir_enhanced_2.2.1.tgz";
url = "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz";
sha1 = "524af240d1a360527b730475ecfa1344aa540dde";
};
}
{
name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz";
path = fetchurl {
name = "_nodelib_fs.stat___fs.stat_1.1.3.tgz";
url = "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz";
sha1 = "2b5a3ab3f918cca48a8c754c08168e3f03eba61b";
};
}
{
name = "_parcel_fs___fs_1.11.0.tgz";
path = fetchurl {
name = "_parcel_fs___fs_1.11.0.tgz";
url = "https://registry.yarnpkg.com/@parcel/fs/-/fs-1.11.0.tgz";
sha1 = "fb8a2be038c454ad46a50dc0554c1805f13535cd";
};
}
{
name = "_parcel_logger___logger_1.11.1.tgz";
path = fetchurl {
name = "_parcel_logger___logger_1.11.1.tgz";
url = "https://registry.yarnpkg.com/@parcel/logger/-/logger-1.11.1.tgz";
sha1 = "c55b0744bcbe84ebc291155627f0ec406a23e2e6";
};
}
{
name = "_parcel_utils___utils_1.11.0.tgz";
path = fetchurl {
name = "_parcel_utils___utils_1.11.0.tgz";
url = "https://registry.yarnpkg.com/@parcel/utils/-/utils-1.11.0.tgz";
sha1 = "539e08fff8af3b26eca11302be80b522674b51ea";
};
}
{
name = "_parcel_watcher___watcher_1.12.1.tgz";
path = fetchurl {
name = "_parcel_watcher___watcher_1.12.1.tgz";
url = "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-1.12.1.tgz";
sha1 = "b98b3df309fcab93451b5583fc38e40826696dad";
};
}
{
name = "_parcel_workers___workers_1.11.0.tgz";
path = fetchurl {
name = "_parcel_workers___workers_1.11.0.tgz";
url = "https://registry.yarnpkg.com/@parcel/workers/-/workers-1.11.0.tgz";
sha1 = "7b8dcf992806f4ad2b6cecf629839c41c2336c59";
};
}
{
name = "_types_q___q_1.5.2.tgz";
path = fetchurl {
name = "_types_q___q_1.5.2.tgz";
url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz";
sha1 = "690a1475b84f2a884fd07cd797c00f5f31356ea8";
};
}
{
name = "abab___abab_2.0.3.tgz";
path = fetchurl {
name = "abab___abab_2.0.3.tgz";
url = "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz";
sha1 = "623e2075e02eb2d3f2475e49f99c91846467907a";
};
}
{
name = "abbrev___abbrev_1.1.1.tgz";
path = fetchurl {
name = "abbrev___abbrev_1.1.1.tgz";
url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz";
sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8";
};
}
{
name = "acorn_globals___acorn_globals_4.3.4.tgz";
path = fetchurl {
name = "acorn_globals___acorn_globals_4.3.4.tgz";
url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz";
sha1 = "9fa1926addc11c97308c4e66d7add0d40c3272e7";
};
}
{
name = "acorn_walk___acorn_walk_6.2.0.tgz";
path = fetchurl {
name = "acorn_walk___acorn_walk_6.2.0.tgz";
url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz";
sha1 = "123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c";
};
}
{
name = "acorn___acorn_5.7.3.tgz";
path = fetchurl {
name = "acorn___acorn_5.7.3.tgz";
url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz";
sha1 = "67aa231bf8812974b85235a96771eb6bd07ea279";
};
}
{
name = "acorn___acorn_6.4.0.tgz";
path = fetchurl {
name = "acorn___acorn_6.4.0.tgz";
url = "https://registry.yarnpkg.com/acorn/-/acorn-6.4.0.tgz";
sha1 = "b659d2ffbafa24baf5db1cdbb2c94a983ecd2784";
};
}
{
name = "ajv___ajv_6.11.0.tgz";
path = fetchurl {
name = "ajv___ajv_6.11.0.tgz";
url = "https://registry.yarnpkg.com/ajv/-/ajv-6.11.0.tgz";
sha1 = "c3607cbc8ae392d8a5a536f25b21f8e5f3f87fe9";
};
}
{
name = "alphanum_sort___alphanum_sort_1.0.2.tgz";
path = fetchurl {
name = "alphanum_sort___alphanum_sort_1.0.2.tgz";
url = "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz";
sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3";
};
}
{
name = "ansi_regex___ansi_regex_2.1.1.tgz";
path = fetchurl {
name = "ansi_regex___ansi_regex_2.1.1.tgz";
url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz";
sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
};
}
{
name = "ansi_regex___ansi_regex_3.0.0.tgz";
path = fetchurl {
name = "ansi_regex___ansi_regex_3.0.0.tgz";
url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz";
sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
};
}
{
name = "ansi_regex___ansi_regex_4.1.0.tgz";
path = fetchurl {
name = "ansi_regex___ansi_regex_4.1.0.tgz";
url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz";
sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997";
};
}
{
name = "ansi_styles___ansi_styles_2.2.1.tgz";
path = fetchurl {
name = "ansi_styles___ansi_styles_2.2.1.tgz";
url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz";
sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
};
}
{
name = "ansi_styles___ansi_styles_3.2.1.tgz";
path = fetchurl {
name = "ansi_styles___ansi_styles_3.2.1.tgz";
url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz";
sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d";
};
}
{
name = "ansi_to_html___ansi_to_html_0.6.13.tgz";
path = fetchurl {
name = "ansi_to_html___ansi_to_html_0.6.13.tgz";
url = "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.13.tgz";
sha1 = "c72eae8b63e5ca0643aab11bfc6e6f2217425833";
};
}
{
name = "anymatch___anymatch_2.0.0.tgz";
path = fetchurl {
name = "anymatch___anymatch_2.0.0.tgz";
url = "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz";
sha1 = "bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb";
};
}
{
name = "aproba___aproba_1.2.0.tgz";
path = fetchurl {
name = "aproba___aproba_1.2.0.tgz";
url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz";
sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a";
};
}
{
name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz";
path = fetchurl {
name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz";
url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
sha1 = "4b35c2944f062a8bfcda66410760350fe9ddfc21";
};
}
{
name = "argparse___argparse_1.0.10.tgz";
path = fetchurl {
name = "argparse___argparse_1.0.10.tgz";
url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz";
sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911";
};
}
{
name = "arr_diff___arr_diff_4.0.0.tgz";
path = fetchurl {
name = "arr_diff___arr_diff_4.0.0.tgz";
url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz";
sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
};
}
{
name = "arr_flatten___arr_flatten_1.1.0.tgz";
path = fetchurl {
name = "arr_flatten___arr_flatten_1.1.0.tgz";
url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz";
sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1";
};
}
{
name = "arr_union___arr_union_3.1.0.tgz";
path = fetchurl {
name = "arr_union___arr_union_3.1.0.tgz";
url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz";
sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
};
}
{
name = "array_equal___array_equal_1.0.0.tgz";
path = fetchurl {
name = "array_equal___array_equal_1.0.0.tgz";
url = "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz";
sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93";
};
}
{
name = "array_unique___array_unique_0.3.2.tgz";
path = fetchurl {
name = "array_unique___array_unique_0.3.2.tgz";
url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz";
sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
};
}
{
name = "asn1.js___asn1.js_4.10.1.tgz";
path = fetchurl {
name = "asn1.js___asn1.js_4.10.1.tgz";
url = "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz";
sha1 = "b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0";
};
}
{
name = "asn1___asn1_0.2.4.tgz";
path = fetchurl {
name = "asn1___asn1_0.2.4.tgz";
url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz";
sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136";
};
}
{
name = "assert_plus___assert_plus_1.0.0.tgz";
path = fetchurl {
name = "assert_plus___assert_plus_1.0.0.tgz";
url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz";
sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
};
}
{
name = "assert___assert_1.5.0.tgz";
path = fetchurl {
name = "assert___assert_1.5.0.tgz";
url = "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz";
sha1 = "55c109aaf6e0aefdb3dc4b71240c70bf574b18eb";
};
}
{
name = "assign_symbols___assign_symbols_1.0.0.tgz";
path = fetchurl {
name = "assign_symbols___assign_symbols_1.0.0.tgz";
url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz";
sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
};
}
{
name = "async_each___async_each_1.0.3.tgz";
path = fetchurl {
name = "async_each___async_each_1.0.3.tgz";
url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz";
sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf";
};
}
{
name = "async_limiter___async_limiter_1.0.1.tgz";
path = fetchurl {
name = "async_limiter___async_limiter_1.0.1.tgz";
url = "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz";
sha1 = "dd379e94f0db8310b08291f9d64c3209766617fd";
};
}
{
name = "async___async_2.6.3.tgz";
path = fetchurl {
name = "async___async_2.6.3.tgz";
url = "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz";