-
Notifications
You must be signed in to change notification settings - Fork 2
/
node-packages.nix
3493 lines (3491 loc) · 130 KB
/
node-packages.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
# This file has been generated by node2nix 1.11.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}:
let
sources = {
"@kwsites/file-exists-1.1.1" = {
name = "_at_kwsites_slash_file-exists";
packageName = "@kwsites/file-exists";
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz";
sha512 = "m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==";
};
};
"@kwsites/promise-deferred-1.1.1" = {
name = "_at_kwsites_slash_promise-deferred";
packageName = "@kwsites/promise-deferred";
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz";
sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==";
};
};
"@octokit/app-12.0.7" = {
name = "_at_octokit_slash_app";
packageName = "@octokit/app";
version = "12.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/app/-/app-12.0.7.tgz";
sha512 = "NqgLlaaf7Yy1s5ghhiiBRGzstICpBYnVX5ce3Klk3iKaGeXJDBLVyrJ6e6sYOiTXolFK56Nx5QWS6oUBgP6rSw==";
};
};
"@octokit/auth-app-3.6.1" = {
name = "_at_octokit_slash_auth-app";
packageName = "@octokit/auth-app";
version = "3.6.1";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-app/-/auth-app-3.6.1.tgz";
sha512 = "6oa6CFphIYI7NxxHrdVOzhG7hkcKyGyYocg7lNDSJVauVOLtylg8hNJzoUyPAYKKK0yUeoZamE/lMs2tG+S+JA==";
};
};
"@octokit/auth-oauth-app-4.3.4" = {
name = "_at_octokit_slash_auth-oauth-app";
packageName = "@octokit/auth-oauth-app";
version = "4.3.4";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-oauth-app/-/auth-oauth-app-4.3.4.tgz";
sha512 = "OYOTSSINeUAiLMk1uelaGB/dEkReBqHHr8+hBejzMG4z1vA4c7QSvDAS0RVZSr4oD4PEUPYFzEl34K7uNrXcWA==";
};
};
"@octokit/auth-oauth-device-3.1.4" = {
name = "_at_octokit_slash_auth-oauth-device";
packageName = "@octokit/auth-oauth-device";
version = "3.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-3.1.4.tgz";
sha512 = "6sHE/++r+aEFZ/BKXOGPJcH/nbgbBjS1A4CHfq/PbPEwb0kZEt43ykW98GBO/rYBPAYaNpCPvXfGwzgR9yMCXg==";
};
};
"@octokit/auth-oauth-device-4.0.2" = {
name = "_at_octokit_slash_auth-oauth-device";
packageName = "@octokit/auth-oauth-device";
version = "4.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-4.0.2.tgz";
sha512 = "h5Ir0q5c6dHZwWMrSWMvgu3JyuH7qCPJ0kB9jNYDugsAob69N65ebA3E5FWPUN6hGJguZpy3CRmqejTx7aSobQ==";
};
};
"@octokit/auth-oauth-user-1.3.0" = {
name = "_at_octokit_slash_auth-oauth-user";
packageName = "@octokit/auth-oauth-user";
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-1.3.0.tgz";
sha512 = "3QC/TAdk7onnxfyZ24BnJRfZv8TRzQK7SEFUS9vLng4Vv6Hv6I64ujdk/CUkREec8lhrwU764SZ/d+yrjjqhaQ==";
};
};
"@octokit/auth-oauth-user-2.0.3" = {
name = "_at_octokit_slash_auth-oauth-user";
packageName = "@octokit/auth-oauth-user";
version = "2.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-2.0.3.tgz";
sha512 = "NMGTTGa1j6JVtlpZUOrhi1RxBjHaogS0p59qV8HtFOx3Rgq503xfjjA8npyVbRuAf30iW/K5YueZKivMkhBITA==";
};
};
"@octokit/auth-token-2.5.0" = {
name = "_at_octokit_slash_auth-token";
packageName = "@octokit/auth-token";
version = "2.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz";
sha512 = "r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==";
};
};
"@octokit/auth-unauthenticated-2.1.0" = {
name = "_at_octokit_slash_auth-unauthenticated";
packageName = "@octokit/auth-unauthenticated";
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/auth-unauthenticated/-/auth-unauthenticated-2.1.0.tgz";
sha512 = "+baofLfSL0CAv3CfGQ9rxiZZQEX8VNJMGuuS4PgrMRBUL52Ho5+hQYb63UJQshw7EXYMPDZxbXznc0y33cbPqw==";
};
};
"@octokit/core-3.6.0" = {
name = "_at_octokit_slash_core";
packageName = "@octokit/core";
version = "3.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/core/-/core-3.6.0.tgz";
sha512 = "7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==";
};
};
"@octokit/endpoint-6.0.12" = {
name = "_at_octokit_slash_endpoint";
packageName = "@octokit/endpoint";
version = "6.0.12";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz";
sha512 = "lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==";
};
};
"@octokit/endpoint-7.0.1" = {
name = "_at_octokit_slash_endpoint";
packageName = "@octokit/endpoint";
version = "7.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.1.tgz";
sha512 = "/wTXAJwt0HzJ2IeE4kQXO+mBScfzyCkI0hMtkIaqyXd9zg76OpOfNQfHL9FlaxAV2RsNiOXZibVWloy8EexENg==";
};
};
"@octokit/graphql-4.8.0" = {
name = "_at_octokit_slash_graphql";
packageName = "@octokit/graphql";
version = "4.8.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz";
sha512 = "0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==";
};
};
"@octokit/oauth-app-3.7.1" = {
name = "_at_octokit_slash_oauth-app";
packageName = "@octokit/oauth-app";
version = "3.7.1";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/oauth-app/-/oauth-app-3.7.1.tgz";
sha512 = "NTmFuB4jcwnxj7xlipHuuX9DRprfb7vHGSBIizIygx2u8LlNYqGvHYWNgw3TpxRxYrFA+SMIfjoVgrtnYpdbrA==";
};
};
"@octokit/oauth-authorization-url-4.3.3" = {
name = "_at_octokit_slash_oauth-authorization-url";
packageName = "@octokit/oauth-authorization-url";
version = "4.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-4.3.3.tgz";
sha512 = "lhP/t0i8EwTmayHG4dqLXgU+uPVys4WD/qUNvC+HfB1S1dyqULm5Yx9uKc1x79aP66U1Cb4OZeW8QU/RA9A4XA==";
};
};
"@octokit/oauth-authorization-url-5.0.0" = {
name = "_at_octokit_slash_oauth-authorization-url";
packageName = "@octokit/oauth-authorization-url";
version = "5.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-5.0.0.tgz";
sha512 = "y1WhN+ERDZTh0qZ4SR+zotgsQUE1ysKnvBt1hvDRB2WRzYtVKQjn97HEPzoehh66Fj9LwNdlZh+p6TJatT0zzg==";
};
};
"@octokit/oauth-methods-1.2.6" = {
name = "_at_octokit_slash_oauth-methods";
packageName = "@octokit/oauth-methods";
version = "1.2.6";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-1.2.6.tgz";
sha512 = "nImHQoOtKnSNn05uk2o76om1tJWiAo4lOu2xMAHYsNr0fwopP+Dv+2MlGvaMMlFjoqVd3fF3X5ZDTKCsqgmUaQ==";
};
};
"@octokit/oauth-methods-2.0.3" = {
name = "_at_octokit_slash_oauth-methods";
packageName = "@octokit/oauth-methods";
version = "2.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-2.0.3.tgz";
sha512 = "XM+pPsj6TB9zXHfGszZmIp2zRShjQuwGLEKbkOQ7mZBHBPpx0TRzSYwUbwiAJsWefkPUXgr7i0qFsxLr/Uciyg==";
};
};
"@octokit/openapi-types-12.11.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
version = "12.11.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz";
sha512 = "VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==";
};
};
"@octokit/openapi-types-13.6.0" = {
name = "_at_octokit_slash_openapi-types";
packageName = "@octokit/openapi-types";
version = "13.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-13.6.0.tgz";
sha512 = "bxftLwoZ2J6zsU1rzRvk0O32j7lVB0NWWn+P5CDHn9zPzytasR3hdAeXlTngRDkqv1LyEeuy5psVnDkmOSwrcQ==";
};
};
"@octokit/plugin-paginate-rest-2.21.3" = {
name = "_at_octokit_slash_plugin-paginate-rest";
packageName = "@octokit/plugin-paginate-rest";
version = "2.21.3";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz";
sha512 = "aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==";
};
};
"@octokit/plugin-rest-endpoint-methods-5.16.2" = {
name = "_at_octokit_slash_plugin-rest-endpoint-methods";
packageName = "@octokit/plugin-rest-endpoint-methods";
version = "5.16.2";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz";
sha512 = "8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==";
};
};
"@octokit/plugin-retry-3.0.9" = {
name = "_at_octokit_slash_plugin-retry";
packageName = "@octokit/plugin-retry";
version = "3.0.9";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-3.0.9.tgz";
sha512 = "r+fArdP5+TG6l1Rv/C9hVoty6tldw6cE2pRHNGmFPdyfrc696R6JjrQ3d7HdVqGwuzfyrcaLAKD7K8TX8aehUQ==";
};
};
"@octokit/plugin-throttling-3.7.0" = {
name = "_at_octokit_slash_plugin-throttling";
packageName = "@octokit/plugin-throttling";
version = "3.7.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-3.7.0.tgz";
sha512 = "qrKT1Yl/KuwGSC6/oHpLBot3ooC9rq0/ryDYBCpkRtoj+R8T47xTMDT6Tk2CxWopFota/8Pi/2SqArqwC0JPow==";
};
};
"@octokit/request-5.6.3" = {
name = "_at_octokit_slash_request";
packageName = "@octokit/request";
version = "5.6.3";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz";
sha512 = "bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==";
};
};
"@octokit/request-6.2.1" = {
name = "_at_octokit_slash_request";
packageName = "@octokit/request";
version = "6.2.1";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/request/-/request-6.2.1.tgz";
sha512 = "gYKRCia3cpajRzDSU+3pt1q2OcuC6PK8PmFIyxZDWCzRXRSIBH8jXjFJ8ZceoygBIm0KsEUg4x1+XcYBz7dHPQ==";
};
};
"@octokit/request-error-2.1.0" = {
name = "_at_octokit_slash_request-error";
packageName = "@octokit/request-error";
version = "2.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz";
sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==";
};
};
"@octokit/request-error-3.0.1" = {
name = "_at_octokit_slash_request-error";
packageName = "@octokit/request-error";
version = "3.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.1.tgz";
sha512 = "ym4Bp0HTP7F3VFssV88WD1ZyCIRoE8H35pXSKwLeMizcdZAYc/t6N9X9Yr9n6t3aG9IH75XDnZ6UeZph0vHMWQ==";
};
};
"@octokit/types-6.41.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
version = "6.41.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz";
sha512 = "eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==";
};
};
"@octokit/types-7.2.0" = {
name = "_at_octokit_slash_types";
packageName = "@octokit/types";
version = "7.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/types/-/types-7.2.0.tgz";
sha512 = "pYQ/a1U6mHptwhGyp6SvsiM4bWP2s3V95olUeTxas85D/2kN78yN5C8cGN+P4LwJSWUqIEyvq0Qn2WUn6NQRjw==";
};
};
"@octokit/webhooks-9.26.0" = {
name = "_at_octokit_slash_webhooks";
packageName = "@octokit/webhooks";
version = "9.26.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/webhooks/-/webhooks-9.26.0.tgz";
sha512 = "foZlsgrTDwAmD5j2Czn6ji10lbWjGDVsUxTIydjG9KTkAWKJrFapXJgO5SbGxRwfPd3OJdhK3nA2YPqVhxLXqA==";
};
};
"@octokit/webhooks-methods-2.0.0" = {
name = "_at_octokit_slash_webhooks-methods";
packageName = "@octokit/webhooks-methods";
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/webhooks-methods/-/webhooks-methods-2.0.0.tgz";
sha512 = "35cfQ4YWlnZnmZKmIxlGPUPLtbkF8lr/A/1Sk1eC0ddLMwQN06dOuLc+dI3YLQS+T+MoNt3DIQ0NynwgKPilig==";
};
};
"@octokit/webhooks-types-5.8.0" = {
name = "_at_octokit_slash_webhooks-types";
packageName = "@octokit/webhooks-types";
version = "5.8.0";
src = fetchurl {
url = "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-5.8.0.tgz";
sha512 = "8adktjIb76A7viIdayQSFuBEwOzwhDC+9yxZpKNHjfzrlostHCw0/N7JWpWMObfElwvJMk2fY2l1noENCk9wmw==";
};
};
"@redis/bloom-1.0.2" = {
name = "_at_redis_slash_bloom";
packageName = "@redis/bloom";
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/@redis/bloom/-/bloom-1.0.2.tgz";
sha512 = "EBw7Ag1hPgFzdznK2PBblc1kdlj5B5Cw3XwI9/oG7tSn85/HKy3X9xHy/8tm/eNXJYHLXHJL/pkwBpFMVVefkw==";
};
};
"@redis/client-1.3.0" = {
name = "_at_redis_slash_client";
packageName = "@redis/client";
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/@redis/client/-/client-1.3.0.tgz";
sha512 = "XCFV60nloXAefDsPnYMjHGtvbtHR8fV5Om8cQ0JYqTNbWcQo/4AryzJ2luRj4blveWazRK/j40gES8M7Cp6cfQ==";
};
};
"@redis/graph-1.0.1" = {
name = "_at_redis_slash_graph";
packageName = "@redis/graph";
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/@redis/graph/-/graph-1.0.1.tgz";
sha512 = "oDE4myMCJOCVKYMygEMWuriBgqlS5FqdWerikMoJxzmmTUErnTRRgmIDa2VcgytACZMFqpAOWDzops4DOlnkfQ==";
};
};
"@redis/json-1.0.3" = {
name = "_at_redis_slash_json";
packageName = "@redis/json";
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/@redis/json/-/json-1.0.3.tgz";
sha512 = "4X0Qv0BzD9Zlb0edkUoau5c1bInWSICqXAGrpwEltkncUwcxJIGEcVryZhLgb0p/3PkKaLIWkjhHRtLe9yiA7Q==";
};
};
"@redis/search-1.1.0" = {
name = "_at_redis_slash_search";
packageName = "@redis/search";
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/@redis/search/-/search-1.1.0.tgz";
sha512 = "NyFZEVnxIJEybpy+YskjgOJRNsfTYqaPbK/Buv6W2kmFNaRk85JiqjJZA5QkRmWvGbyQYwoO5QfDi2wHskKrQQ==";
};
};
"@redis/time-series-1.0.3" = {
name = "_at_redis_slash_time-series";
packageName = "@redis/time-series";
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.3.tgz";
sha512 = "OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA==";
};
};
"@sindresorhus/is-4.6.0" = {
name = "_at_sindresorhus_slash_is";
packageName = "@sindresorhus/is";
version = "4.6.0";
src = fetchurl {
url = "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz";
sha512 = "t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==";
};
};
"@szmarczak/http-timer-4.0.6" = {
name = "_at_szmarczak_slash_http-timer";
packageName = "@szmarczak/http-timer";
version = "4.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz";
sha512 = "4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==";
};
};
"@types/aws-lambda-8.10.102" = {
name = "_at_types_slash_aws-lambda";
packageName = "@types/aws-lambda";
version = "8.10.102";
src = fetchurl {
url = "https://registry.npmjs.org/@types/aws-lambda/-/aws-lambda-8.10.102.tgz";
sha512 = "BT05v46n9KtSHa9SgGuOvm49eSruJ9utD8iNXpdpuUVYk8wOcqmm1LEzpNRkrXxD0CULc38sdLpk6q3Wa2WOwg==";
};
};
"@types/btoa-lite-1.0.0" = {
name = "_at_types_slash_btoa-lite";
packageName = "@types/btoa-lite";
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@types/btoa-lite/-/btoa-lite-1.0.0.tgz";
sha512 = "wJsiX1tosQ+J5+bY5LrSahHxr2wT+uME5UDwdN1kg4frt40euqA+wzECkmq4t5QbveHiJepfdThgQrPw6KiSlg==";
};
};
"@types/cacheable-request-6.0.2" = {
name = "_at_types_slash_cacheable-request";
packageName = "@types/cacheable-request";
version = "6.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.2.tgz";
sha512 = "B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==";
};
};
"@types/http-cache-semantics-4.0.1" = {
name = "_at_types_slash_http-cache-semantics";
packageName = "@types/http-cache-semantics";
version = "4.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz";
sha512 = "SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==";
};
};
"@types/json-buffer-3.0.0" = {
name = "_at_types_slash_json-buffer";
packageName = "@types/json-buffer";
version = "3.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@types/json-buffer/-/json-buffer-3.0.0.tgz";
sha512 = "3YP80IxxFJB4b5tYC2SUPwkg0XQLiu0nWvhRgEatgjf+29IcWO9X1k8xRv5DGssJ/lCrjYTjQPcobJr2yWIVuQ==";
};
};
"@types/jsonwebtoken-8.5.9" = {
name = "_at_types_slash_jsonwebtoken";
packageName = "@types/jsonwebtoken";
version = "8.5.9";
src = fetchurl {
url = "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.9.tgz";
sha512 = "272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==";
};
};
"@types/keyv-3.1.4" = {
name = "_at_types_slash_keyv";
packageName = "@types/keyv";
version = "3.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz";
sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==";
};
};
"@types/lru-cache-5.1.1" = {
name = "_at_types_slash_lru-cache";
packageName = "@types/lru-cache";
version = "5.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz";
sha512 = "ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==";
};
};
"@types/node-18.7.14" = {
name = "_at_types_slash_node";
packageName = "@types/node";
version = "18.7.14";
src = fetchurl {
url = "https://registry.npmjs.org/@types/node/-/node-18.7.14.tgz";
sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA==";
};
};
"@types/responselike-1.0.0" = {
name = "_at_types_slash_responselike";
packageName = "@types/responselike";
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz";
sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==";
};
};
"@ungap/promise-all-settled-1.1.2" = {
name = "_at_ungap_slash_promise-all-settled";
packageName = "@ungap/promise-all-settled";
version = "1.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz";
sha512 = "sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==";
};
};
"accepts-1.3.8" = {
name = "accepts";
packageName = "accepts";
version = "1.3.8";
src = fetchurl {
url = "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz";
sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==";
};
};
"aggregate-error-3.1.0" = {
name = "aggregate-error";
packageName = "aggregate-error";
version = "3.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz";
sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==";
};
};
"ansi-colors-4.1.1" = {
name = "ansi-colors";
packageName = "ansi-colors";
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz";
sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==";
};
};
"ansi-regex-5.0.1" = {
name = "ansi-regex";
packageName = "ansi-regex";
version = "5.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz";
sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==";
};
};
"ansi-styles-4.3.0" = {
name = "ansi-styles";
packageName = "ansi-styles";
version = "4.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz";
sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==";
};
};
"anymatch-3.1.2" = {
name = "anymatch";
packageName = "anymatch";
version = "3.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz";
sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==";
};
};
"argparse-1.0.10" = {
name = "argparse";
packageName = "argparse";
version = "1.0.10";
src = fetchurl {
url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz";
sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==";
};
};
"argparse-2.0.1" = {
name = "argparse";
packageName = "argparse";
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz";
sha512 = "8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==";
};
};
"array-flatten-1.1.1" = {
name = "array-flatten";
packageName = "array-flatten";
version = "1.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
sha512 = "PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==";
};
};
"asynckit-0.4.0" = {
name = "asynckit";
packageName = "asynckit";
version = "0.4.0";
src = fetchurl {
url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==";
};
};
"available-typed-arrays-1.0.5" = {
name = "available-typed-arrays";
packageName = "available-typed-arrays";
version = "1.0.5";
src = fetchurl {
url = "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz";
sha512 = "DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==";
};
};
"aws-lambda-1.0.7" = {
name = "aws-lambda";
packageName = "aws-lambda";
version = "1.0.7";
src = fetchurl {
url = "https://registry.npmjs.org/aws-lambda/-/aws-lambda-1.0.7.tgz";
sha512 = "9GNFMRrEMG5y3Jvv+V4azWvc+qNWdWLTjDdhf/zgMlz8haaaLWv0xeAIWxz9PuWUBawsVxy0zZotjCdR3Xq+2w==";
};
};
"aws-sdk-2.1207.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
version = "2.1207.0";
src = fetchurl {
url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1207.0.tgz";
sha512 = "UDNYNeWw9ATbz+pH4lI3AUQgnmK3RwowCrXmW+lVV0bZYo+efiB/LEWQKe0nZK9K2h1LxZYihIih9dOvaGme/w==";
};
};
"balanced-match-1.0.2" = {
name = "balanced-match";
packageName = "balanced-match";
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz";
sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==";
};
};
"base64-js-1.5.1" = {
name = "base64-js";
packageName = "base64-js";
version = "1.5.1";
src = fetchurl {
url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz";
sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==";
};
};
"before-after-hook-2.2.2" = {
name = "before-after-hook";
packageName = "before-after-hook";
version = "2.2.2";
src = fetchurl {
url = "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz";
sha512 = "3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==";
};
};
"binary-extensions-2.2.0" = {
name = "binary-extensions";
packageName = "binary-extensions";
version = "2.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz";
sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==";
};
};
"body-parser-1.20.0" = {
name = "body-parser";
packageName = "body-parser";
version = "1.20.0";
src = fetchurl {
url = "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz";
sha512 = "DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==";
};
};
"bottleneck-2.19.5" = {
name = "bottleneck";
packageName = "bottleneck";
version = "2.19.5";
src = fetchurl {
url = "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz";
sha512 = "VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==";
};
};
"brace-expansion-1.1.11" = {
name = "brace-expansion";
packageName = "brace-expansion";
version = "1.1.11";
src = fetchurl {
url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz";
sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==";
};
};
"braces-3.0.2" = {
name = "braces";
packageName = "braces";
version = "3.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz";
sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==";
};
};
"browser-stdout-1.3.1" = {
name = "browser-stdout";
packageName = "browser-stdout";
version = "1.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz";
sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==";
};
};
"btoa-lite-1.0.0" = {
name = "btoa-lite";
packageName = "btoa-lite";
version = "1.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz";
sha512 = "gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==";
};
};
"buffer-4.9.2" = {
name = "buffer";
packageName = "buffer";
version = "4.9.2";
src = fetchurl {
url = "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz";
sha512 = "xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==";
};
};
"buffer-equal-constant-time-1.0.1" = {
name = "buffer-equal-constant-time";
packageName = "buffer-equal-constant-time";
version = "1.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz";
sha512 = "zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==";
};
};
"bytes-3.1.2" = {
name = "bytes";
packageName = "bytes";
version = "3.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz";
sha512 = "/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==";
};
};
"cacheable-lookup-5.0.4" = {
name = "cacheable-lookup";
packageName = "cacheable-lookup";
version = "5.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz";
sha512 = "2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==";
};
};
"cacheable-request-7.0.2" = {
name = "cacheable-request";
packageName = "cacheable-request";
version = "7.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz";
sha512 = "pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==";
};
};
"call-bind-1.0.2" = {
name = "call-bind";
packageName = "call-bind";
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz";
sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==";
};
};
"camelcase-6.3.0" = {
name = "camelcase";
packageName = "camelcase";
version = "6.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz";
sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==";
};
};
"chalk-4.1.2" = {
name = "chalk";
packageName = "chalk";
version = "4.1.2";
src = fetchurl {
url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz";
sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==";
};
};
"child_process-1.0.2" = {
name = "child_process";
packageName = "child_process";
version = "1.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/child_process/-/child_process-1.0.2.tgz";
sha512 = "Wmza/JzL0SiWz7kl6MhIKT5ceIlnFPJX+lwUGj7Clhy5MMldsSoJR0+uvRzOS5Kv45Mq7t1PoE8TsOA9bzvb6g==";
};
};
"chokidar-3.5.3" = {
name = "chokidar";
packageName = "chokidar";
version = "3.5.3";
src = fetchurl {
url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz";
sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==";
};
};
"chownr-2.0.0" = {
name = "chownr";
packageName = "chownr";
version = "2.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz";
sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==";
};
};
"clean-stack-2.2.0" = {
name = "clean-stack";
packageName = "clean-stack";
version = "2.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz";
sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==";
};
};
"cliui-7.0.4" = {
name = "cliui";
packageName = "cliui";
version = "7.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz";
sha512 = "OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==";
};
};
"clone-response-1.0.3" = {
name = "clone-response";
packageName = "clone-response";
version = "1.0.3";
src = fetchurl {
url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz";
sha512 = "ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==";
};
};
"cluster-key-slot-1.1.0" = {
name = "cluster-key-slot";
packageName = "cluster-key-slot";
version = "1.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.0.tgz";
sha512 = "2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw==";
};
};
"color-convert-2.0.1" = {
name = "color-convert";
packageName = "color-convert";
version = "2.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz";
sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==";
};
};
"color-name-1.1.4" = {
name = "color-name";
packageName = "color-name";
version = "1.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz";
sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==";
};
};
"combined-stream-1.0.8" = {
name = "combined-stream";
packageName = "combined-stream";
version = "1.0.8";
src = fetchurl {
url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz";
sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==";
};
};
"commander-3.0.2" = {
name = "commander";
packageName = "commander";
version = "3.0.2";
src = fetchurl {
url = "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz";
sha512 = "Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==";
};
};
"component-emitter-1.3.0" = {
name = "component-emitter";
packageName = "component-emitter";
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz";
sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==";
};
};
"compress-brotli-1.3.8" = {
name = "compress-brotli";
packageName = "compress-brotli";
version = "1.3.8";
src = fetchurl {
url = "https://registry.npmjs.org/compress-brotli/-/compress-brotli-1.3.8.tgz";
sha512 = "lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==";
};
};
"concat-map-0.0.1" = {
name = "concat-map";
packageName = "concat-map";
version = "0.0.1";
src = fetchurl {
url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==";
};
};
"content-disposition-0.5.4" = {
name = "content-disposition";
packageName = "content-disposition";
version = "0.5.4";
src = fetchurl {
url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz";
sha512 = "FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==";
};
};
"content-type-1.0.4" = {
name = "content-type";
packageName = "content-type";
version = "1.0.4";
src = fetchurl {
url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz";
sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==";
};
};
"cookie-0.5.0" = {
name = "cookie";
packageName = "cookie";
version = "0.5.0";
src = fetchurl {
url = "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz";
sha512 = "YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==";
};
};
"cookie-signature-1.0.6" = {
name = "cookie-signature";
packageName = "cookie-signature";
version = "1.0.6";
src = fetchurl {
url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz";
sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==";
};
};
"cookiejar-2.1.3" = {
name = "cookiejar";
packageName = "cookiejar";
version = "2.1.3";
src = fetchurl {
url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz";
sha512 = "JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==";
};
};
"cors-2.8.5" = {
name = "cors";
packageName = "cors";
version = "2.8.5";
src = fetchurl {
url = "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz";
sha512 = "KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==";
};
};
"crypto-js-4.1.1" = {
name = "crypto-js";
packageName = "crypto-js";
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/crypto-js/-/crypto-js-4.1.1.tgz";
sha512 = "o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==";
};
};
"debug-2.6.9" = {
name = "debug";
packageName = "debug";
version = "2.6.9";
src = fetchurl {
url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==";
};
};
"debug-4.3.3" = {
name = "debug";
packageName = "debug";
version = "4.3.3";
src = fetchurl {
url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz";
sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==";
};
};
"debug-4.3.4" = {
name = "debug";
packageName = "debug";
version = "4.3.4";
src = fetchurl {
url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz";
sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==";
};
};
"decamelize-4.0.0" = {
name = "decamelize";
packageName = "decamelize";
version = "4.0.0";
src = fetchurl {
url = "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz";
sha512 = "9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==";
};
};
"decompress-response-6.0.0" = {
name = "decompress-response";
packageName = "decompress-response";
version = "6.0.0";