-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.nix
6253 lines (6253 loc) · 232 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_cli___cli_7.7.4.tgz";
path = fetchurl {
name = "_babel_cli___cli_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/cli/-/cli-7.7.4.tgz";
sha1 = "38804334c8db40209f88c69a5c90998e60cca18b";
};
}
{
name = "_babel_code_frame___code_frame_7.5.5.tgz";
path = fetchurl {
name = "_babel_code_frame___code_frame_7.5.5.tgz";
url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz";
sha1 = "bc0782f6d69f7b7d49531219699b988f669a8f9d";
};
}
{
name = "_babel_core___core_7.7.4.tgz";
path = fetchurl {
name = "_babel_core___core_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/core/-/core-7.7.4.tgz";
sha1 = "37e864532200cb6b50ee9a4045f5f817840166ab";
};
}
{
name = "_babel_generator___generator_7.7.4.tgz";
path = fetchurl {
name = "_babel_generator___generator_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.4.tgz";
sha1 = "db651e2840ca9aa66f327dcec1dc5f5fa9611369";
};
}
{
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_annotate_as_pure___helper_annotate_as_pure_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.4.tgz";
sha1 = "bb3faf1e74b74bd547e867e48f551fa6b098b6ce";
};
}
{
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_builder_binary_assignment_operator_visitor___helper_builder_binary_assignment_operator_visitor_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz";
sha1 = "5f73f2b28580e224b5b9bd03146a4015d6217f5f";
};
}
{
name = "_babel_helper_call_delegate___helper_call_delegate_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_call_delegate___helper_call_delegate_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz";
sha1 = "621b83e596722b50c0066f9dc37d3232e461b801";
};
}
{
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_create_regexp_features_plugin___helper_create_regexp_features_plugin_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz";
sha1 = "6d5762359fd34f4da1500e4cff9955b5299aaf59";
};
}
{
name = "_babel_helper_define_map___helper_define_map_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_define_map___helper_define_map_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.4.tgz";
sha1 = "2841bf92eb8bd9c906851546fe6b9d45e162f176";
};
}
{
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_explode_assignable_expression___helper_explode_assignable_expression_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.4.tgz";
sha1 = "fa700878e008d85dc51ba43e9fb835cddfe05c84";
};
}
{
name = "_babel_helper_function_name___helper_function_name_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_function_name___helper_function_name_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz";
sha1 = "ab6e041e7135d436d8f0a3eca15de5b67a341a2e";
};
}
{
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_get_function_arity___helper_get_function_arity_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz";
sha1 = "cb46348d2f8808e632f0ab048172130e636005f0";
};
}
{
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_hoist_variables___helper_hoist_variables_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.4.tgz";
sha1 = "612384e3d823fdfaaf9fce31550fe5d4db0f3d12";
};
}
{
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.4.tgz";
sha1 = "356438e2569df7321a8326644d4b790d2122cb74";
};
}
{
name = "_babel_helper_module_imports___helper_module_imports_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_module_imports___helper_module_imports_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz";
sha1 = "e5a92529f8888bf319a6376abfbd1cebc491ad91";
};
}
{
name = "_babel_helper_module_transforms___helper_module_transforms_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_module_transforms___helper_module_transforms_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.4.tgz";
sha1 = "8d7cdb1e1f8ea3d8c38b067345924ac4f8e0879a";
};
}
{
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_optimise_call_expression___helper_optimise_call_expression_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.4.tgz";
sha1 = "034af31370d2995242aa4df402c3b7794b2dcdf2";
};
}
{
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.0.0.tgz";
path = fetchurl {
name = "_babel_helper_plugin_utils___helper_plugin_utils_7.0.0.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz";
sha1 = "bbb3fbee98661c569034237cc03967ba99b4f250";
};
}
{
name = "_babel_helper_regex___helper_regex_7.5.5.tgz";
path = fetchurl {
name = "_babel_helper_regex___helper_regex_7.5.5.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz";
sha1 = "0aa6824f7100a2e0e89c1527c23936c152cab351";
};
}
{
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_remap_async_to_generator___helper_remap_async_to_generator_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.4.tgz";
sha1 = "c68c2407350d9af0e061ed6726afb4fff16d0234";
};
}
{
name = "_babel_helper_replace_supers___helper_replace_supers_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_replace_supers___helper_replace_supers_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.4.tgz";
sha1 = "3c881a6a6a7571275a72d82e6107126ec9e2cdd2";
};
}
{
name = "_babel_helper_simple_access___helper_simple_access_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_simple_access___helper_simple_access_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.4.tgz";
sha1 = "a169a0adb1b5f418cfc19f22586b2ebf58a9a294";
};
}
{
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz";
sha1 = "57292af60443c4a3622cf74040ddc28e68336fd8";
};
}
{
name = "_babel_helper_wrap_function___helper_wrap_function_7.7.4.tgz";
path = fetchurl {
name = "_babel_helper_wrap_function___helper_wrap_function_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz";
sha1 = "37ab7fed5150e22d9d7266e830072c0cdd8baace";
};
}
{
name = "_babel_helpers___helpers_7.7.4.tgz";
path = fetchurl {
name = "_babel_helpers___helpers_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.4.tgz";
sha1 = "62c215b9e6c712dadc15a9a0dcab76c92a940302";
};
}
{
name = "_babel_highlight___highlight_7.5.0.tgz";
path = fetchurl {
name = "_babel_highlight___highlight_7.5.0.tgz";
url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz";
sha1 = "56d11312bd9248fa619591d02472be6e8cb32540";
};
}
{
name = "_babel_node___node_7.7.4.tgz";
path = fetchurl {
name = "_babel_node___node_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/node/-/node-7.7.4.tgz";
sha1 = "de1cc9c67b335a19e4f71208554779bc63719f5a";
};
}
{
name = "_babel_parser___parser_7.7.4.tgz";
path = fetchurl {
name = "_babel_parser___parser_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.4.tgz";
sha1 = "75ab2d7110c2cf2fa949959afb05fa346d2231bb";
};
}
{
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_async_generator_functions___plugin_proposal_async_generator_functions_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.4.tgz";
sha1 = "0351c5ac0a9e927845fffd5b82af476947b7ce6d";
};
}
{
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_dynamic_import___plugin_proposal_dynamic_import_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.4.tgz";
sha1 = "dde64a7f127691758cbfed6cf70de0fa5879d52d";
};
}
{
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_json_strings___plugin_proposal_json_strings_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.7.4.tgz";
sha1 = "7700a6bfda771d8dc81973249eac416c6b4c697d";
};
}
{
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_object_rest_spread___plugin_proposal_object_rest_spread_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.4.tgz";
sha1 = "cc57849894a5c774214178c8ab64f6334ec8af71";
};
}
{
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_optional_catch_binding___plugin_proposal_optional_catch_binding_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.7.4.tgz";
sha1 = "ec21e8aeb09ec6711bc0a39ca49520abee1de379";
};
}
{
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_proposal_unicode_property_regex___plugin_proposal_unicode_property_regex_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.4.tgz";
sha1 = "7c239ccaf09470dbe1d453d50057460e84517ebb";
};
}
{
name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_async_generators___plugin_syntax_async_generators_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.7.4.tgz";
sha1 = "331aaf310a10c80c44a66b238b6e49132bd3c889";
};
}
{
name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_dynamic_import___plugin_syntax_dynamic_import_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz";
sha1 = "29ca3b4415abfe4a5ec381e903862ad1a54c3aec";
};
}
{
name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_json_strings___plugin_syntax_json_strings_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.7.4.tgz";
sha1 = "86e63f7d2e22f9e27129ac4e83ea989a382e86cc";
};
}
{
name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_object_rest_spread___plugin_syntax_object_rest_spread_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz";
sha1 = "47cf220d19d6d0d7b154304701f468fc1cc6ff46";
};
}
{
name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_optional_catch_binding___plugin_syntax_optional_catch_binding_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.7.4.tgz";
sha1 = "a3e38f59f4b6233867b4a92dcb0ee05b2c334aa6";
};
}
{
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_syntax_top_level_await___plugin_syntax_top_level_await_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz";
sha1 = "bd7d8fa7b9fee793a36e4027fd6dd1aa32f946da";
};
}
{
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_arrow_functions___plugin_transform_arrow_functions_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.7.4.tgz";
sha1 = "76309bd578addd8aee3b379d809c802305a98a12";
};
}
{
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_async_to_generator___plugin_transform_async_to_generator_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.4.tgz";
sha1 = "694cbeae6d613a34ef0292713fa42fb45c4470ba";
};
}
{
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_block_scoped_functions___plugin_transform_block_scoped_functions_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.7.4.tgz";
sha1 = "d0d9d5c269c78eaea76227ace214b8d01e4d837b";
};
}
{
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_block_scoping___plugin_transform_block_scoping_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.7.4.tgz";
sha1 = "200aad0dcd6bb80372f94d9e628ea062c58bf224";
};
}
{
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_classes___plugin_transform_classes_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.4.tgz";
sha1 = "c92c14be0a1399e15df72667067a8f510c9400ec";
};
}
{
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_computed_properties___plugin_transform_computed_properties_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.7.4.tgz";
sha1 = "e856c1628d3238ffe12d668eb42559f79a81910d";
};
}
{
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_destructuring___plugin_transform_destructuring_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.7.4.tgz";
sha1 = "2b713729e5054a1135097b6a67da1b6fe8789267";
};
}
{
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_dotall_regex___plugin_transform_dotall_regex_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.4.tgz";
sha1 = "f7ccda61118c5b7a2599a72d5e3210884a021e96";
};
}
{
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_duplicate_keys___plugin_transform_duplicate_keys_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.7.4.tgz";
sha1 = "3d21731a42e3f598a73835299dd0169c3b90ac91";
};
}
{
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_exponentiation_operator___plugin_transform_exponentiation_operator_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.7.4.tgz";
sha1 = "dd30c0191e3a1ba19bcc7e389bdfddc0729d5db9";
};
}
{
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_for_of___plugin_transform_for_of_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.7.4.tgz";
sha1 = "248800e3a5e507b1f103d8b4ca998e77c63932bc";
};
}
{
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_function_name___plugin_transform_function_name_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.4.tgz";
sha1 = "75a6d3303d50db638ff8b5385d12451c865025b1";
};
}
{
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_literals___plugin_transform_literals_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.7.4.tgz";
sha1 = "27fe87d2b5017a2a5a34d1c41a6b9f6a6262643e";
};
}
{
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_member_expression_literals___plugin_transform_member_expression_literals_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.7.4.tgz";
sha1 = "aee127f2f3339fc34ce5e3055d7ffbf7aa26f19a";
};
}
{
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_amd___plugin_transform_modules_amd_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.7.4.tgz";
sha1 = "276b3845ca2b228f2995e453adc2e6f54d72fb71";
};
}
{
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_commonjs___plugin_transform_modules_commonjs_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.4.tgz";
sha1 = "bee4386e550446343dd52a571eda47851ff857a3";
};
}
{
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_systemjs___plugin_transform_modules_systemjs_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.4.tgz";
sha1 = "cd98152339d3e763dfe838b7d4273edaf520bb30";
};
}
{
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_modules_umd___plugin_transform_modules_umd_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.4.tgz";
sha1 = "1027c355a118de0aae9fee00ad7813c584d9061f";
};
}
{
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_named_capturing_groups_regex___plugin_transform_named_capturing_groups_regex_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.4.tgz";
sha1 = "fb3bcc4ee4198e7385805007373d6b6f42c98220";
};
}
{
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_new_target___plugin_transform_new_target_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.7.4.tgz";
sha1 = "4a0753d2d60639437be07b592a9e58ee00720167";
};
}
{
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_object_super___plugin_transform_object_super_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.7.4.tgz";
sha1 = "48488937a2d586c0148451bf51af9d7dda567262";
};
}
{
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_parameters___plugin_transform_parameters_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.7.4.tgz";
sha1 = "da4555c97f39b51ac089d31c7380f03bca4075ce";
};
}
{
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_property_literals___plugin_transform_property_literals_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.7.4.tgz";
sha1 = "2388d6505ef89b266103f450f9167e6bd73f98c2";
};
}
{
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_regenerator___plugin_transform_regenerator_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.4.tgz";
sha1 = "d18eac0312a70152d7d914cbed2dc3999601cfc0";
};
}
{
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_reserved_words___plugin_transform_reserved_words_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz";
sha1 = "6a7cf123ad175bb5c69aec8f6f0770387ed3f1eb";
};
}
{
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_shorthand_properties___plugin_transform_shorthand_properties_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz";
sha1 = "74a0a9b2f6d67a684c6fbfd5f0458eb7ba99891e";
};
}
{
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_spread___plugin_transform_spread_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz";
sha1 = "aa673b356fe6b7e70d69b6e33a17fef641008578";
};
}
{
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_sticky_regex___plugin_transform_sticky_regex_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.7.4.tgz";
sha1 = "ffb68c05090c30732076b1285dc1401b404a123c";
};
}
{
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_template_literals___plugin_transform_template_literals_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.7.4.tgz";
sha1 = "1eb6411736dd3fe87dbd20cc6668e5121c17d604";
};
}
{
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_typeof_symbol___plugin_transform_typeof_symbol_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.7.4.tgz";
sha1 = "3174626214f2d6de322882e498a38e8371b2140e";
};
}
{
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.7.4.tgz";
path = fetchurl {
name = "_babel_plugin_transform_unicode_regex___plugin_transform_unicode_regex_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.4.tgz";
sha1 = "a3c0f65b117c4c81c5b6484f2a5e7b95346b83ae";
};
}
{
name = "_babel_preset_env___preset_env_7.7.4.tgz";
path = fetchurl {
name = "_babel_preset_env___preset_env_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.4.tgz";
sha1 = "ccaf309ae8d1ee2409c85a4e2b5e280ceee830f8";
};
}
{
name = "_babel_register___register_7.7.4.tgz";
path = fetchurl {
name = "_babel_register___register_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/register/-/register-7.7.4.tgz";
sha1 = "45a4956471a9df3b012b747f5781cc084ee8f128";
};
}
{
name = "_babel_runtime_corejs3___runtime_corejs3_7.7.4.tgz";
path = fetchurl {
name = "_babel_runtime_corejs3___runtime_corejs3_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.7.4.tgz";
sha1 = "f861adc1cecb9903dfd66ea97917f02ff8d79888";
};
}
{
name = "_babel_runtime___runtime_7.7.4.tgz";
path = fetchurl {
name = "_babel_runtime___runtime_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.4.tgz";
sha1 = "b23a856751e4bf099262f867767889c0e3fe175b";
};
}
{
name = "_babel_template___template_7.7.4.tgz";
path = fetchurl {
name = "_babel_template___template_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/template/-/template-7.7.4.tgz";
sha1 = "428a7d9eecffe27deac0a98e23bf8e3675d2a77b";
};
}
{
name = "_babel_traverse___traverse_7.7.4.tgz";
path = fetchurl {
name = "_babel_traverse___traverse_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.4.tgz";
sha1 = "9c1e7c60fb679fe4fcfaa42500833333c2058558";
};
}
{
name = "_babel_types___types_7.7.4.tgz";
path = fetchurl {
name = "_babel_types___types_7.7.4.tgz";
url = "https://registry.yarnpkg.com/@babel/types/-/types-7.7.4.tgz";
sha1 = "516570d539e44ddf308c07569c258ff94fde9193";
};
}
{
name = "_types_chai___chai_4.2.6.tgz";
path = fetchurl {
name = "_types_chai___chai_4.2.6.tgz";
url = "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.6.tgz";
sha1 = "a55625d151d9c7c7a0a95920632131d66480bce9";
};
}
{
name = "_types_cookiejar___cookiejar_2.1.1.tgz";
path = fetchurl {
name = "_types_cookiejar___cookiejar_2.1.1.tgz";
url = "https://registry.yarnpkg.com/@types/cookiejar/-/cookiejar-2.1.1.tgz";
sha1 = "90b68446364baf9efd8e8349bb36bd3852b75b80";
};
}
{
name = "_types_node___node_12.12.14.tgz";
path = fetchurl {
name = "_types_node___node_12.12.14.tgz";
url = "https://registry.yarnpkg.com/@types/node/-/node-12.12.14.tgz";
sha1 = "1c1d6e3c75dba466e0326948d56e8bd72a1903d2";
};
}
{
name = "_types_superagent___superagent_3.8.7.tgz";
path = fetchurl {
name = "_types_superagent___superagent_3.8.7.tgz";
url = "https://registry.yarnpkg.com/@types/superagent/-/superagent-3.8.7.tgz";
sha1 = "1f1ed44634d5459b3a672eb7235a8e7cfd97704c";
};
}
{
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 = "accepts___accepts_1.3.7.tgz";
path = fetchurl {
name = "accepts___accepts_1.3.7.tgz";
url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz";
sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd";
};
}
{
name = "acorn_jsx___acorn_jsx_5.1.0.tgz";
path = fetchurl {
name = "acorn_jsx___acorn_jsx_5.1.0.tgz";
url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz";
sha1 = "294adb71b57398b0680015f0a38c563ee1db5384";
};
}
{
name = "acorn___acorn_7.1.0.tgz";
path = fetchurl {
name = "acorn___acorn_7.1.0.tgz";
url = "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz";
sha1 = "949d36f2c292535da602283586c2477c57eb2d6c";
};
}
{
name = "agent_base___agent_base_4.3.0.tgz";
path = fetchurl {
name = "agent_base___agent_base_4.3.0.tgz";
url = "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz";
sha1 = "8165f01c436009bccad0b1d122f05ed770efc6ee";
};
}
{
name = "agentkeepalive___agentkeepalive_4.1.0.tgz";
path = fetchurl {
name = "agentkeepalive___agentkeepalive_4.1.0.tgz";
url = "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.1.0.tgz";
sha1 = "a48e040ed16745dd29ce923675f60c9c90f39ee0";
};
}
{
name = "ajv___ajv_6.10.2.tgz";
path = fetchurl {
name = "ajv___ajv_6.10.2.tgz";
url = "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz";
sha1 = "d3cea04d6b017b2894ad69040fec8b623eb4bd52";
};
}
{
name = "ansi_colors___ansi_colors_3.2.3.tgz";
path = fetchurl {
name = "ansi_colors___ansi_colors_3.2.3.tgz";
url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.3.tgz";
sha1 = "57d35b8686e851e2cc04c403f1c00203976a1813";
};
}
{
name = "ansi_escapes___ansi_escapes_4.3.0.tgz";
path = fetchurl {
name = "ansi_escapes___ansi_escapes_4.3.0.tgz";
url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.0.tgz";
sha1 = "a4ce2b33d6b214b7950d8595c212f12ac9cc569d";
};
}
{
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_regex___ansi_regex_5.0.0.tgz";
path = fetchurl {
name = "ansi_regex___ansi_regex_5.0.0.tgz";
url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz";
sha1 = "388539f55179bf39339c81af30a654d69f87cb75";
};
}
{
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 = "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 = "append_transform___append_transform_1.0.0.tgz";
path = fetchurl {
name = "append_transform___append_transform_1.0.0.tgz";
url = "https://registry.yarnpkg.com/append-transform/-/append-transform-1.0.0.tgz";
sha1 = "046a52ae582a228bd72f58acfbe2967c678759ab";
};
}
{
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 = "archy___archy_1.0.0.tgz";
path = fetchurl {
name = "archy___archy_1.0.0.tgz";
url = "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz";
sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
};
}
{
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 = "aria_query___aria_query_3.0.0.tgz";
path = fetchurl {
name = "aria_query___aria_query_3.0.0.tgz";
url = "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz";
sha1 = "65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc";
};
}
{
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_flatten___array_flatten_1.1.1.tgz";
path = fetchurl {
name = "array_flatten___array_flatten_1.1.1.tgz";
url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz";
sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
};
}
{
name = "array_includes___array_includes_3.0.3.tgz";
path = fetchurl {
name = "array_includes___array_includes_3.0.3.tgz";
url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz";
sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d";
};
}
{
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___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 = "assertion_error___assertion_error_1.1.0.tgz";
path = fetchurl {
name = "assertion_error___assertion_error_1.1.0.tgz";
url = "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz";
sha1 = "e60b6b0e8f301bd97e5375215bda406c85118c0b";
};
}
{
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 = "ast_types_flow___ast_types_flow_0.0.7.tgz";
path = fetchurl {
name = "ast_types_flow___ast_types_flow_0.0.7.tgz";
url = "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz";
sha1 = "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad";
};
}
{
name = "astral_regex___astral_regex_1.0.0.tgz";
path = fetchurl {
name = "astral_regex___astral_regex_1.0.0.tgz";
url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz";
sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9";
};
}
{
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___async_2.6.1.tgz";
path = fetchurl {
name = "async___async_2.6.1.tgz";
url = "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz";
sha1 = "b245a23ca71930044ec53fa46aa00a3e87c6a610";
};
}
{
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";
sha1 = "d72625e2344a3656e3a3ad4fa749fa83299d82ff";
};
}
{
name = "asynckit___asynckit_0.4.0.tgz";
path = fetchurl {
name = "asynckit___asynckit_0.4.0.tgz";
url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz";
sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
}
{
name = "atob___atob_2.1.2.tgz";
path = fetchurl {
name = "atob___atob_2.1.2.tgz";
url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz";
sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9";
};
}
{
name = "aws_sign2___aws_sign2_0.7.0.tgz";
path = fetchurl {
name = "aws_sign2___aws_sign2_0.7.0.tgz";
url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz";
sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
};
}
{
name = "aws4___aws4_1.9.0.tgz";
path = fetchurl {
name = "aws4___aws4_1.9.0.tgz";
url = "https://registry.yarnpkg.com/aws4/-/aws4-1.9.0.tgz";
sha1 = "24390e6ad61386b0a747265754d2a17219de862c";
};
}
{
name = "axobject_query___axobject_query_2.1.1.tgz";
path = fetchurl {
name = "axobject_query___axobject_query_2.1.1.tgz";
url = "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.1.tgz";
sha1 = "2a3b1271ec722d48a4cd4b3fcc20c853326a49a7";
};
}
{
name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.0.tgz";
path = fetchurl {
name = "babel_plugin_dynamic_import_node___babel_plugin_dynamic_import_node_2.3.0.tgz";
url = "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz";