forked from elong0527/r4csr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
2893 lines (2893 loc) · 206 KB
/
manifest.json
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
{
"version": 1,
"locale": "en_US",
"platform": "4.1.1",
"metadata": {
"appmode": "rmd-static",
"primary_rmd": "index.Rmd",
"primary_html": null,
"content_category": "site",
"has_parameters": false
},
"packages": {
"Formula": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "Formula",
"Version": "1.2-4",
"Date": "2020-10-16",
"Title": "Extended Model Formulas",
"Description": "Infrastructure for extended formulas with multiple parts on the\n right-hand side and/or multiple responses on the left-hand side\n\t (see <doi:10.18637/jss.v034.i01>).",
"Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0918-3766\")),\n person(given = \"Yves\", family = \"Croissant\", role = \"aut\", email = \"[email protected]\"))",
"Depends": "R (>= 2.0.0), stats",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "no",
"Packaged": "2020-10-16 12:39:27 UTC; zeileis",
"Author": "Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>),\n Yves Croissant [aut]",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2020-10-16 13:50:06 UTC",
"Encoding": "UTF-8",
"Built": "R 4.0.1; ; 2021-09-15 20:50:55 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.",
"Depends": "R (>= 3.0)",
"Suggests": "testthat, pryr",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-08-06 20:18:46 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Encoding": "UTF-8",
"Built": "R 4.0.1; ; 2021-09-15 20:44:57 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "RColorBrewer",
"Version": "1.1-2",
"Date": "2014-12-07",
"Title": "ColorBrewer Palettes",
"Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n \"cre\"), email = \"[email protected]\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <[email protected]>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org",
"License": "Apache License 2.0",
"Packaged": "2014-12-06 23:59:42 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2014-12-07 08:28:55",
"Built": "R 4.0.1; ; 2021-09-06 17:34:32 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.7",
"Date": "2021-07-06",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and\n Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,\n <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,\n <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Imports": "methods, utils",
"Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)",
"URL": "http://www.rcpp.org, https://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "[email protected]",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-07-06 11:37:52 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2021-07-07 14:30:02 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:48:50 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Safe Password Entry for R, Git, and SSH",
"Version": "1.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/jeroen/askpass#readme",
"BugReports": "https://github.com/jeroen/askpass/issues",
"Encoding": "UTF-8",
"LazyData": "true",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "6.1.1",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2019-01-13 12:08:17 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:51:14 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:52:54 UTC; unix"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "bit",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.0.4",
"Date": "2020-08-03",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 2.9.2)",
"Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)",
"Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.1.0.9000",
"NeedsCompilation": "yes",
"Packaged": "2020-08-03 12:14:34 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2020-08-04 04:20:08 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 20:15:01 UTC; unix"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.0.5",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats",
"Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. \n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when \n combined with double, e.g. integer64 + double => integer64. \n Class integer64 can be used in vectors, matrices, arrays and data.frames. \n Methods are available for coercion from and to logicals, integers, doubles, \n characters and factors as well as many elementwise and summary functions. \n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/truecluster/bit64",
"Encoding": "UTF-8",
"Repository": "CRAN",
"Repository/R-Forge/Project": "ff",
"Repository/R-Forge/Revision": "177",
"Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18",
"Date/Publication": "2020-08-30 07:20:02 UTC",
"NeedsCompilation": "yes",
"Packaged": "2020-08-29 10:56:45 UTC; jo",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 20:15:11 UTC; unix"
}
},
"bookdown": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "bookdown",
"Type": "Package",
"Title": "Authoring Books and Technical Documents with R Markdown",
"Version": "0.24",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Albert\", \"Kim\", role = \"ctb\"),\n person(\"Alessandro\", \"Samuel-Rosa\", role = \"ctb\"),\n person(\"Andrzej\", \"Oles\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Aust\", \"Frederik\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(\"Bastiaan\", \"Quast\", role = \"ctb\"),\n person(\"Ben\", \"Marwick\", role = \"ctb\"),\n person(\"Chester\", \"Ismay\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"Clifton\", \"Franklund\", role = \"ctb\"),\n person(\"Daniel\", \"Emaasit\", role = \"ctb\"),\n person(\"David\", \"Shuman\", role = \"ctb\"),\n person(\"Dean\", \"Attali\", role = \"ctb\"),\n person(\"Drew\", \"Tyre\", role = \"ctb\"),\n person(\"Ellis\", \"Valentiner\", role = \"ctb\"),\n person(\"Frans\", \"van Dunne\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Jeff\", \"Allen\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\"),\n person(\"Jonathan\", \"McPhers\", role = \"ctb\"),\n person(\"JooYoung\", \"Seo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")),\n person(\"Joyce\", \"Robbins\", role = \"ctb\"),\n person(\"Junwen\", \"Huang\", role = \"ctb\"),\n person(\"Kevin\", \"Cheung\", role = \"ctb\"),\n person(\"Kevin\", \"Ushey\", role = \"ctb\"),\n person(\"Kim\", \"Seonghyun\", role = \"ctb\"),\n person(\"Kirill\", \"Muller\", role = \"ctb\"),\n person(\"Luciano\", \"Selzer\", role = \"ctb\"),\n person(\"Matthew\", \"Lincoln\", role = \"ctb\"),\n person(\"Maximilian\", \"Held\", role = \"ctb\"),\n person(\"Michael\", \"Sachs\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Nathan\", \"Werth\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Peter\", \"Hickey\", role = \"ctb\"),\n person(\"Pedro Rafael D.\", \"Marinho\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1591-8300\")),\n person(\"Romain\", \"Lesur\", role = \"ctb\", comment = c(ORCID = \"0000-0002-0721-5595\")),\n person(\"Sahir\", \"Bhatnagar\", role = \"ctb\"),\n person(\"Shir\", \"Dekel\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1773-2446\")),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Thierry\", \"Onkelinx\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")),\n person(\"Vincent\", \"Fulco\", role = \"ctb\"),\n person(\"Yixuan\", \"Qiu\", role = \"ctb\"),\n person(\"Zhuoer\", \"Dong\", role = \"ctb\"),\n person(family = \"RStudio, PBC\", role = \"cph\"),\n person(\"Bartek\", \"Szopka\", role = \"ctb\", comment = \"The jQuery Highlight plugin\"),\n person(\"Zeno\", \"Rocha\", role = \"cph\", comment = \"clipboard.js library\"),\n person(family = \"MathQuill contributors\", role = \"ctb\", comment = \"The MathQuill library; authors listed in inst/resources/AUTHORS\"),\n person(family = \"FriendCode Inc\", role = c(\"cph\", \"ctb\"), comment = \"The gitbook style, with modifications\")\n )",
"Maintainer": "Yihui Xie <[email protected]>",
"Description": "Output formats and utilities for authoring books and technical documents with R Markdown.",
"License": "GPL-3",
"Imports": "htmltools (>= 0.3.6), knitr (>= 1.31), rmarkdown (>= 2.9),\njquerylib, xfun (>= 0.22), tinytex (>= 0.12), yaml (>= 2.1.19)",
"Suggests": "bslib (>= 0.2.4), downlit (>= 0.2.1), htmlwidgets, jsonlite,\nrstudioapi, miniUI, rsconnect (>= 0.4.3), servr (>= 0.13),\nshiny, tibble, testit (>= 0.9), tufte, xml2, webshot, testthat\n(>= 3.0.0), withr (>= 2.3.0)",
"URL": "https://github.com/rstudio/bookdown,\nhttps://pkgs.rstudio.com/bookdown/",
"BugReports": "https://github.com/rstudio/bookdown/issues",
"SystemRequirements": "Pandoc (>= 1.17.2)",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Config/testthat/edition": "3",
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Packaged": "2021-09-02 01:36:34 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n JJ Allaire [ctb],\n Albert Kim [ctb],\n Alessandro Samuel-Rosa [ctb],\n Andrzej Oles [ctb],\n Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>),\n Aust Frederik [ctb] (<https://orcid.org/0000-0003-4900-788X>),\n Bastiaan Quast [ctb],\n Ben Marwick [ctb],\n Chester Ismay [ctb],\n Christophe Dervieux [ctb],\n Clifton Franklund [ctb],\n Daniel Emaasit [ctb],\n David Shuman [ctb],\n Dean Attali [ctb],\n Drew Tyre [ctb],\n Ellis Valentiner [ctb],\n Frans van Dunne [ctb],\n Hadley Wickham [ctb],\n Jeff Allen [ctb],\n Jennifer Bryan [ctb],\n Jonathan McPhers [ctb],\n JooYoung Seo [ctb] (<https://orcid.org/0000-0002-4064-6012>),\n Joyce Robbins [ctb],\n Junwen Huang [ctb],\n Kevin Cheung [ctb],\n Kevin Ushey [ctb],\n Kim Seonghyun [ctb],\n Kirill Muller [ctb],\n Luciano Selzer [ctb],\n Matthew Lincoln [ctb],\n Maximilian Held [ctb],\n Michael Sachs [ctb],\n Michal Bojanowski [ctb],\n Nathan Werth [ctb],\n Noam Ross [ctb],\n Peter Hickey [ctb],\n Pedro Rafael D. Marinho [ctb] (<https://orcid.org/0000-0003-1591-8300>),\n Romain Lesur [ctb] (<https://orcid.org/0000-0002-0721-5595>),\n Sahir Bhatnagar [ctb],\n Shir Dekel [ctb] (<https://orcid.org/0000-0003-1773-2446>),\n Steve Simpson [ctb],\n Thierry Onkelinx [ctb] (<https://orcid.org/0000-0001-8804-4216>),\n Vincent Fulco [ctb],\n Yixuan Qiu [ctb],\n Zhuoer Dong [ctb],\n RStudio, PBC [cph],\n Bartek Szopka [ctb] (The jQuery Highlight plugin),\n Zeno Rocha [cph] (clipboard.js library),\n MathQuill contributors [ctb] (The MathQuill library; authors listed in\n inst/resources/AUTHORS),\n FriendCode Inc [cph, ctb] (The gitbook style, with modifications)",
"Repository": "RSPM",
"Date/Publication": "2021-09-02 21:10:35 UTC",
"Built": "R 4.0.1; ; 2021-09-15 20:58:46 UTC; unix"
}
},
"brio": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "brio",
"Title": "Basic R Input Output",
"Version": "1.1.2",
"Authors@R": "\n c(person(given = \"Jim\",\n family = \"Hester\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Functions to handle basic input output, these functions always\n read and write UTF-8 (8-bit Unicode Transformation Format) files and provide\n more explicit control over line endings.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Suggests": "testthat (>= 2.1.0), covr",
"URL": "https://github.com/r-lib/brio",
"BugReports": "https://github.com/r-lib/brio/issues",
"NeedsCompilation": "yes",
"Packaged": "2021-04-23 12:51:40 UTC; jhester",
"Author": "Jim Hester [aut, cre] (<https://orcid.org/0000-0002-2739-7082>),\n RStudio [cph, fnd]",
"Maintainer": "Jim Hester <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-23 13:30:03 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:50:46 UTC; unix"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.3.0",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap accessibility plugin\")\n )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports both 'Bootstrap' 3 and 4 as well as their various 'Bootswatch' themes. An interactive widget is also provided for previewing themes in real time.",
"Depends": "R (>= 2.10)",
"Imports": "grDevices, htmltools (>= 0.5.2), jsonlite, sass (>= 0.4.0),\njquerylib (>= 0.1.3), rlang",
"Suggests": "shiny (>= 1.6.0), rmarkdown (>= 2.7), thematic, knitr,\ntestthat, withr, rappdirs, curl, magrittr",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3",
"Collate": "'bootswatch.R' 'bs-current-theme.R' 'bs-dependencies.R'\n'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'deprecated.R' 'files.R' 'imports.R' 'nav-items.R'\n'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R'\n'precompiled.R' 'print.R' 'shiny-devmode.R' 'utils-shiny.R'\n'utils-tags.R' 'version-default.R' 'versions.R'",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"NeedsCompilation": "no",
"Packaged": "2021-09-01 21:39:14 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n RStudio [cph],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2021-09-02 14:50:41 UTC",
"Built": "R 4.0.1; ; 2021-09-15 20:50:44 UTC; unix"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.0",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\",\n\t comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\")),\n person(\"Mango Solutions\", role = c(\"cph\", \"fnd\")))",
"Description": "It is sometimes useful to perform a computation in a\n separate R process, without affecting the current R process at all.\n This packages does exactly that.",
"License": "MIT + file LICENSE",
"URL": "https://callr.r-lib.org, https://github.com/r-lib/callr#readme",
"BugReports": "https://github.com/r-lib/callr/issues",
"RoxygenNote": "7.1.1.9001",
"Imports": "processx (>= 3.5.0), R6, utils",
"Suggests": "cli, covr, ps, rprojroot, spelling, testthat, withr (>=\n2.3.0)",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "no",
"Packaged": "2021-04-20 12:39:23 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\n Winston Chang [aut],\n RStudio [cph, fnd],\n Mango Solutions [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-20 14:20:10 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:50:33 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.0.1",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = c(\"ctb\")),\n person(\"Kirill\", \"Müller\", role = c(\"ctb\")),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "A suite of tools to build attractive command line interfaces\n ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\n etc. Supports custom themes via a 'CSS'-like language. It also contains a\n number of lower level 'CLI' elements: rules, boxes, trees, and\n 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and\n text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"RoxygenNote": "7.1.1.9001",
"Depends": "R (>= 2.10)",
"Imports": "glue, utils",
"Suggests": "callr, covr, grDevices, htmlwidgets, knitr, methods, mockery,\nprettycode (>= 1.1.0), processx, ps (>= 1.3.4.9000), rlang,\nrmarkdown, rstudioapi, shiny, testthat, tibble, withr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2021-07-16 20:08:00 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n RStudio [cph]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-07-17 09:00:01 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:44:42 UTC; unix"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.7.1",
"Authors@R": "\n c(person(given = \"Matthew\",\n family = \"Lincoln\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(given = \"Louis\",\n family = \"Maddox\",\n role = \"ctb\"),\n person(given = \"Steve\",\n family = \"Simpson\",\n role = \"ctb\"),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\"))",
"Description": "Simple utility functions to read from and write to\n the Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": "utils",
"Suggests": "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"LazyData": "TRUE",
"RoxygenNote": "7.1.1",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard",
"NeedsCompilation": "no",
"Packaged": "2020-10-08 13:13:31 UTC; mlincoln",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-10-08 14:00:05 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:55:55 UTC; unix"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "colorspace",
"Version": "2.0-2",
"Date": "2021-06-24",
"Title": "A Toolbox for Manipulating and Assessing Colors and Palettes",
"Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"[email protected]\"),\n person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3224-8858\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"[email protected]\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9032-8912\")),\n person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3798-5507\")),\n person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7346-3047\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\n CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\n\t Qualitative, sequential, and diverging color palettes based on HCL colors\n\t are provided along with corresponding ggplot2 color scales.\n\t Color palette choice is aided by an interactive app (with either a Tcl/Tk\n\t or a shiny graphical user interface) and shiny apps with an HCL color picker and a\n\t color vision deficiency emulator. Plotting functions for displaying\n\t and assessing palettes include color swatches, visualizations of the\n\t HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\n\t functions include: desaturation, lightening/darkening, mixing, and\n\t simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\n\t Details can be found on the project web page at <https://colorspace.R-Forge.R-project.org/>\n\t and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\n\t Software, <doi:10.18637/jss.v096.i01>).",
"Depends": "R (>= 3.0.0), methods",
"Imports": "graphics, grDevices, stats",
"Suggests": "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson",
"VignetteBuilder": "knitr",
"License": "BSD_3_clause + file LICENSE",
"URL": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/",
"BugReports": "https://colorspace.R-Forge.R-project.org/contact.html",
"LazyData": "yes",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-06-24 01:25:06 UTC; zeileis",
"Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\n Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\n Jason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\n Reto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\n Claus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\n Claire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\n Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-06-24 07:00:06 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-09-06 17:34:11 UTC; unix"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.3.1",
"Authors@R": "\n c(person(given = \"Jim\",\n family = \"Hester\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(given = \"Romain\",\n family = \"François\",\n role = \"ctb\"),\n person(given = \"Benjamin\",\n family = \"Kietzman\",\n role = \"ctb\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat, tibble, utils, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"SystemRequirements": "C++11",
"NeedsCompilation": "no",
"Packaged": "2021-06-25 19:36:55 UTC; jhester",
"Author": "Jim Hester [aut, cre] (<https://orcid.org/0000-0002-2739-7082>),\n Romain François [ctb],\n Benjamin Kietzman [ctb],\n RStudio [cph, fnd]",
"Maintainer": "Jim Hester <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-06-25 20:00:02 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:51:53 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.4.1",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\",\n role = c(\"aut\", \"cre\")),\n person(\n \"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"ctb\"))\n )",
"Description": "Colored terminal output on terminals that support 'ANSI'\n color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\n color support is automatically detected. Colors and highlighting can\n be combined and nested. New styles can also be created easily.\n This package was inspired by the 'chalk' 'JavaScript' project.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/r-lib/crayon#readme",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Collate": "'aaa-rstudio-detect.R' 'aab-num-ansi-colors.R' 'ansi-256.r'\n'combine.r' 'string.r' 'utils.r' 'crayon-package.r'\n'disposable.r' 'has_ansi.r' 'has_color.r' 'link.R' 'styles.r'\n'machinery.r' 'parts.r' 'print.r' 'rematch2.R' 'style-var.r'\n'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-02-08 18:57:04 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-02-08 19:50:02 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:44:59 UTC; unix"
}
},
"credentials": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "credentials",
"Type": "Package",
"Title": "Tools for Managing SSH and Git Credentials",
"Version": "1.3.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Setup and retrieve HTTPS and SSH credentials for use with 'git' and \n other services. For HTTPS remotes the package interfaces the 'git-credential' \n utility which 'git' uses to store HTTP usernames and passwords. For SSH \n remotes we provide convenient functions to find or generate appropriate SSH \n keys. The package both helps the user to setup a local git installation, and\n also provides a back-end for git/ssh client libraries to authenticate with \n existing user credentials.",
"License": "MIT + file LICENSE",
"SystemRequirements": "git (optional)",
"Encoding": "UTF-8",
"Imports": "openssl (>= 1.3), sys (>= 2.1), curl, jsonlite, askpass",
"Suggests": "testthat, knitr, rmarkdown",
"RoxygenNote": "7.1.1",
"VignetteBuilder": "knitr",
"Language": "en-US",
"URL": "https://docs.ropensci.org/credentials/ (website)\nhttps://github.com/r-lib/credentials",
"BugReports": "https://github.com/r-lib/credentials/issues",
"NeedsCompilation": "no",
"Packaged": "2021-07-24 22:12:51 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-07-25 04:20:14 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:55:59 UTC; unix"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "4.3.2",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "The curl() and curl_download() functions provide highly\n configurable drop-in replacements for base url() and download.file() with\n better performance, support for encryption (https, ftps), gzip compression,\n authentication, and other 'libcurl' goodies. The core of the package implements a\n framework for performing fully customized requests where data can be processed\n either in memory, on disk, or streaming via the callback or connection\n interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\n web client see the 'httr' package which builds on this package with http\n specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL": "https://github.com/jeroen/curl (devel) https://curl.se/libcurl/\n(upstream)",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,\nmagrittr, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2021-06-22 11:39:40 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Hadley Wickham [ctb],\n RStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-06-23 07:00:06 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:50:56 UTC; unix"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <[email protected]> with contributions \n by Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\n Mario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\n Duncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx, \n Michel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\n Matthew de Queljoe, Ion Suruceanu, Bill Denney, Dirk Schumacher,\n and Winston Chang.",
"Version": "0.6.27",
"Date": "2020-10-20",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash\n digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n 'xxhash', 'murmurhash', 'spookyhash' and 'blake3' algorithms) permitting easy\n comparison of R language objects, as well as functions such as'hmac()' to\n create hash-based message authentication code. Please note that this package\n is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be\n used.",
"URL": "http://dirk.eddelbuettel.com/code/digest.html",
"BugReports": "https://github.com/eddelbuettel/digest/issues",
"Depends": "R (>= 3.3.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, knitr, rmarkdown, minidown",
"VignetteBuilder": "knitr",
"NeedsCompilation": "yes",
"Packaged": "2020-10-20 13:03:32 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-10-24 22:10:06 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:46:57 UTC; unix"
}
},
"downlit": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "downlit",
"Title": "Syntax Highlighting and Automatic Linking",
"Version": "0.2.1",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "Syntax highlighting of R code, specifically designed\n for the needs of 'RMarkdown' packages like 'pkgdown', 'hugodown', and\n 'bookdown'. It includes linking of function calls to their documentation\n on the web, and automatic translation of ANSI escapes in output to the\n equivalent HTML.",
"License": "MIT + file LICENSE",
"Depends": "R (>= 3.2.0)",
"Imports": "brio, digest, evaluate, fansi, rlang, vctrs, yaml",
"Suggests": "rmarkdown, jsonlite, MASS, testthat (>= 3.0.0), covr,\npkgload, xml2",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"URL": "https://downlit.r-lib.org/, https://github.com/r-lib/downlit",
"BugReports": "https://github.com/r-lib/downlit/issues",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2020-11-03 21:01:32 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-11-04 06:50:05 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:50:50 UTC; unix"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.0.7",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(given = \"Romain\",\n family = \"François\",\n role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(given = \"Lionel\",\n family = \"Henry\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "A fast, consistent tool for working with data frame\n like objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": "R (>= 3.3.0)",
"Imports": "ellipsis, generics, glue (>= 1.3.2), lifecycle (>= 1.0.0),\nmagrittr (>= 1.5), methods, R6, rlang (>= 0.4.10), tibble (>=\n2.1.3), tidyselect (>= 1.1.0), utils, vctrs (>= 0.3.5), pillar\n(>= 1.5.1)",
"Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 1.4.3), knitr,\nLahman, lobstr, microbenchmark, nycflights13, purrr, rmarkdown,\nRMySQL, RPostgreSQL, RSQLite, testthat (>= 3.0.2), tidyr, withr",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Packaged": "2021-06-16 07:10:11 UTC; lionel",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Lionel Henry [aut],\n Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>),\n RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-06-18 23:20:01 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:46:13 UTC; unix"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "ellipsis",
"Version": "0.3.2",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately \n this power comes at a cost: misspelled arguments will be silently ignored. \n The ellipsis package provides a collection of functions to catch problems\n and alert the user.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis",
"BugReports": "https://github.com/r-lib/ellipsis/issues",
"Depends": "R (>= 3.2)",
"Imports": "rlang (>= 0.3.0)",
"Suggests": "covr, testthat",
"NeedsCompilation": "yes",
"Packaged": "2021-04-29 12:06:44 UTC; lionel",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-29 12:40:02 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:44:11 UTC; unix"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "evaluate",
"Type": "Package",
"Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault",
"Version": "0.14",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\")\n )",
"Description": "Parsing and evaluation tools that make it easy to recreate the\n command line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/evaluate",
"BugReports": "https://github.com/r-lib/evaluate/issues",
"Depends": "R (>= 3.0.2)",
"Imports": "methods",
"Suggests": "testthat, lattice, ggplot2",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2019-05-28 15:30:02 UTC; yihui",
"Author": "Hadley Wickham [aut],\n Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb]",
"Maintainer": "Yihui Xie <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-05-28 15:50:02 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:47:04 UTC; unix"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "fansi",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.",
"Version": "0.5.0",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"[email protected]\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL (>= 2)",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"Imports": "grDevices, utils",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'has.R' 'internal.R' 'load.R'\n'misc.R' 'nchar.R' 'strip.R' 'strwrap.R' 'strtrim.R'\n'strsplit.R' 'substr2.R' 'tohtml.R' 'unhandled.R'",
"NeedsCompilation": "yes",
"Packaged": "2021-05-25 00:22:35 UTC; bg",
"Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-25 04:40:10 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:44:36 UTC; unix"
}
},
"farver": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "farver",
"Type": "Package",
"Title": "High Performance Colour Space Manipulation",
"Version": "2.1.0",
"Authors@R": "\n c(person(given = \"Thomas Lin\",\n family = \"Pedersen\",\n role = c(\"cre\", \"aut\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(given = \"Berendea\",\n family = \"Nicolae\",\n role = \"aut\",\n comment = \"Author of the ColorSpace C++ library\"),\n person(given = \"Romain\", \n family = \"François\", \n role = \"aut\", \n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2444-4226\")) \n )",
"Maintainer": "Thomas Lin Pedersen <[email protected]>",
"Description": "The encoding of colour can be handled in many different ways, using\n different colour spaces. As different colour spaces have different uses,\n efficient conversion between these representations are important. The \n 'farver' package provides a set of functions that gives access to very fast\n colour space conversion and comparisons implemented in C++, and offers \n speed improvements over the 'convertColor' function in the 'grDevices' \n package.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"SystemRequirements": "C++11",
"RoxygenNote": "7.1.1",
"URL": "https://farver.data-imaginist.com,\nhttps://github.com/thomasp85/farver",
"BugReports": "https://github.com/thomasp85/farver/issues",
"Suggests": "testthat (>= 2.1.0), covr",
"NeedsCompilation": "yes",
"Packaged": "2021-02-28 19:00:15 UTC; thomas",
"Author": "Thomas Lin Pedersen [cre, aut]\n (<https://orcid.org/0000-0002-5147-4711>),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>)",
"Repository": "CRAN",
"Date/Publication": "2021-02-28 19:30:02 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-09-06 17:33:56 UTC; unix"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "fastmap",
"Title": "Fast Data Structures",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(given = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\")\n )",
"Description": "Fast implementation of data structures, including a key-value\n store, stack, and queue. Environments are commonly used as key-value stores\n in R, but every time a new key is used, it is added to R's global symbol\n table, causing a small amount of memory leakage. This can be problematic in\n cases where many different keys are used. Fastmap avoids this memory leak\n issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"Suggests": "testthat (>= 2.1.1)",
"URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap",
"BugReports": "https://github.com/r-lib/fastmap/issues",
"NeedsCompilation": "yes",
"Packaged": "2021-01-25 20:28:54 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd],\n Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-01-25 21:00:02 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:51:39 UTC; unix"
}
},
"forcats": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "forcats",
"Title": "Tools for Working with Categorical Variables (Factors)",
"Version": "0.5.1",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Helpers for reordering factor levels (including\n moving specified levels to front, ordering by first appearance,\n reversing, and randomly shuffling), and tools for modifying factor\n levels (including collapsing rare levels into other, 'anonymising',\n and manually 'recoding').",
"License": "MIT + file LICENSE",
"URL": "https://forcats.tidyverse.org,\nhttps://github.com/tidyverse/forcats",
"BugReports": "https://github.com/tidyverse/forcats/issues",
"Depends": "R (>= 3.2)",
"Imports": "ellipsis, magrittr, rlang, tibble",
"Suggests": "covr, dplyr, ggplot2, knitr, readr, rmarkdown, testthat",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-01-27 18:16:43 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-01-27 19:50:02 UTC",
"Built": "R 4.0.1; ; 2021-08-08 20:14:51 UTC; unix"
}
},
"fs": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "fs",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Version": "1.5.0",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", \"aut\"),\n person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A cross-platform interface to file system operations, built on\n top of the 'libuv' C library.",
"Depends": "R (>= 3.1)",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"ByteCompile": "true",
"Imports": "methods",
"SystemRequirements": "GNU make",
"RoxygenNote": "7.1.1",
"URL": "http://fs.r-lib.org, https://github.com/r-lib/fs",
"BugReports": "https://github.com/r-lib/fs/issues",
"Copyright": "file COPYRIGHTS",
"Suggests": "testthat, covr, pillar (>= 1.0.0), tibble (>= 1.1.0), crayon,\nrmarkdown, knitr, withr, spelling, vctrs (>= 0.3.0)",
"VignetteBuilder": "knitr",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2020-07-31 21:00:55 UTC; jhester",
"Author": "Jim Hester [aut, cre],\n Hadley Wickham [aut],\n libuv project contributors [cph] (libuv library),\n Joyent, Inc. and other Node contributors [cph] (libuv library),\n RStudio [cph, fnd]",
"Maintainer": "Jim Hester <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-07-31 21:30:03 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:43:06 UTC; unix"
}
},
"generics": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "generics",
"Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting",
"Version": "0.1.0",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Max\",\n family = \"Kuhn\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Davis\",\n family = \"Vaughan\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "In order to reduce potential package dependencies\n and conflicts, generics provides a number of commonly used S3\n generics.",
"License": "MIT + file LICENSE",
"URL": "https://generics.r-lib.org, https://github.com/r-lib/generics",
"BugReports": "https://github.com/r-lib/generics/issues",
"Depends": "R (>= 3.1)",
"Imports": "methods",
"Suggests": "covr, pkgload, testthat, tibble",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2020-10-30 18:38:40 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n Max Kuhn [aut],\n Davis Vaughan [aut],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-10-31 06:10:15 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:44:15 UTC; unix"
}
},
"gert": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Type": "Package",
"Package": "gert",
"Title": "Simple Git Client for R",
"Version": "1.3.2",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-6983-2759\")))",
"Description": "Simple git client for R based on 'libgit2' with support for SSH and \n HTTPS remotes. All functions in 'gert' use basic R data types (such as vectors\n and data-frames) for their arguments and return values. User credentials are\n shared with command line 'git' through the git-credential store and ssh keys\n stored on disk or ssh-agent.",
"License": "MIT + file LICENSE",
"URL": "https://docs.ropensci.org/gert/ (website),\nhttps://github.com/r-lib/gert (devel), https://libgit2.org\n(upstream)",
"BugReports": "https://github.com/r-lib/gert/issues",
"Imports": "askpass, credentials (>= 1.2.1), openssl (>= 1.4.1),\nrstudioapi (>= 0.11), sys, zip (>= 2.1.0)",
"Suggests": "spelling, knitr, rmarkdown, testthat",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"SystemRequirements": "libgit2 (>= 0.26): libgit2-devel (rpm) or\nlibgit2-dev (deb)",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2021-08-16 11:08:06 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Jennifer Bryan [ctb] (<https://orcid.org/0000-0002-6983-2759>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2021-08-16 15:30:11 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-09-15 20:44:51 UTC; unix"
}
},
"glue": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "glue",
"Title": "Interpreted String Literals",
"Version": "1.4.2",
"Authors@R": "person(\"Jim\", \"Hester\", email = \"[email protected]\", role = c(\"aut\", \"cre\"))",
"Description": "An implementation of interpreted string literals, inspired by\n Python's Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/> and Docstrings\n <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted String Literals\n <https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1>.",
"Depends": "R (>= 3.2)",
"Imports": "methods",
"Suggests": "testthat, covr, magrittr, crayon, knitr, rmarkdown, DBI,\nRSQLite, R.utils, forcats, microbenchmark, rprintf, stringr,\nggplot2, dplyr, withr, vctrs (>= 0.3.0)",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"URL": "https://github.com/tidyverse/glue, https://glue.tidyverse.org/",
"BugReports": "https://github.com/tidyverse/glue/issues",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"NeedsCompilation": "yes",
"Packaged": "2020-08-26 17:24:06 UTC; jhester",
"Author": "Jim Hester [aut, cre]",
"Maintainer": "Jim Hester <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-08-27 13:50:06 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 19:44:19 UTC; unix"
}
},
"haven": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "haven",
"Title": "Import and Export 'SPSS', 'Stata' and 'SAS' Files",
"Version": "2.4.3",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Evan\",\n family = \"Miller\",\n role = c(\"aut\", \"cph\"),\n comment = \"Author of included ReadStat code\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Import foreign statistical formats into R via the embedded\n 'ReadStat' C library, <https://github.com/WizardMac/ReadStat>.",
"License": "MIT + file LICENSE",
"URL": "https://haven.tidyverse.org, https://github.com/tidyverse/haven,\nhttps://github.com/WizardMac/ReadStat",
"BugReports": "https://github.com/tidyverse/haven/issues",
"Depends": "R (>= 3.2)",
"Imports": "forcats (>= 0.2.0), hms, methods, readr (>= 0.1.0), rlang (>=\n0.4.0), tibble, tidyselect, vctrs (>= 0.3.0)",
"Suggests": "cli, covr, crayon, fs, knitr, pillar (>= 1.4.0), rmarkdown,\ntestthat (>= 3.0.0)",
"LinkingTo": "cpp11",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"SystemRequirements": "GNU make, C++11, zlib",
"NeedsCompilation": "yes",
"Packaged": "2021-08-03 21:27:47 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n Evan Miller [aut, cph] (Author of included ReadStat code),\n RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-04 04:50:23 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-08-08 20:17:30 UTC; unix"
}
},
"highr": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "highr",
"Type": "Package",
"Title": "Syntax Highlighting for R Source Code",
"Version": "0.9",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Yixuan\", \"Qiu\", role = \"aut\"),\n person(\"Christopher\", \"Gandrud\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\")\n )",
"Description": "Provides syntax highlighting for R source code. Currently it\n supports LaTeX and HTML output. Source code of other languages is supported\n via Andre Simon's highlight package (<http://www.andre-simon.de>).",
"Depends": "R (>= 3.2.3)",
"Imports": "xfun (>= 0.18)",
"Suggests": "knitr, markdown, testit",
"License": "GPL",
"URL": "https://github.com/yihui/highr",
"BugReports": "https://github.com/yihui/highr/issues",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-04-16 21:12:10 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Yixuan Qiu [aut],\n Christopher Gandrud [ctb],\n Qiang Li [ctb]",
"Maintainer": "Yihui Xie <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-16 21:50:05 UTC",
"Built": "R 4.0.1; ; 2021-08-08 19:47:08 UTC; unix"
}
},
"hms": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "hms",
"Title": "Pretty Time of Day",
"Date": "2021-05-17",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(\"R Consortium\", role = \"fnd\"),\n person(\"RStudio\", role = \"fnd\")\n )",
"Description": "Implements an S3 class for storing and formatting time-of-day\n values, based on the 'difftime' class.",
"Imports": "ellipsis (>= 0.3.2), lifecycle, methods, pkgconfig, rlang,\nvctrs (>= 0.3.8)",
"Suggests": "crayon, lubridate, pillar (>= 1.1.0), testthat (>= 3.0.0)",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms",
"BugReports": "https://github.com/tidyverse/hms/issues",
"RoxygenNote": "7.1.1.9001",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2021-05-17 11:22:29 UTC; kirill",
"Author": "Kirill Müller [aut, cre],\n R Consortium [fnd],\n RStudio [fnd]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-17 17:20:15 UTC",
"Built": "R 4.0.1; ; 2021-08-08 20:14:56 UTC; unix"
}
},
"htmltools": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "htmltools",
"Type": "Package",
"Title": "Tools for HTML",
"Version": "0.5.2",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Winston\", \"Chang\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"[email protected]\"),\n person(\"Jeff\", \"Allen\", role = \"aut\", email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description": "Tools for HTML generation and output.",
"Depends": "R (>= 2.14.1)",
"Imports": "utils, digest, grDevices, base64enc, rlang (>= 0.4.10),\nfastmap",
"Suggests": "markdown, testthat, withr, Cairo, ragg, shiny",
"Enhances": "knitr",
"License": "GPL (>= 2)",
"URL": "https://github.com/rstudio/htmltools",
"BugReports": "https://github.com/rstudio/htmltools/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Collate": "'colors.R' 'html_dependency.R' 'html_escape.R' 'html_print.R'\n'images.R' 'known_tags.R' 'selector.R' 'shim.R' 'tag_query.R'\n'utils.R' 'tags.R' 'template.R'",
"NeedsCompilation": "yes",
"Packaged": "2021-08-17 17:26:06 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>),\n Winston Chang [aut] (<https://orcid.org/0000-0002-1576-2126>),\n Yihui Xie [aut],\n Jeff Allen [aut],\n RStudio [cph]",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2021-08-25 13:50:02 UTC",
"Built": "R 4.0.1; x86_64-pc-linux-gnu; 2021-09-15 20:45:21 UTC; unix"
}
},
"httpuv": {
"Source": "CRAN",
"Repository": "https://packagemanager.rstudio.com/cran/latest",
"description": {
"Package": "httpuv",
"Type": "Package",
"Encoding": "UTF-8",
"Title": "HTTP and WebSocket Server Library",
"Version": "1.6.3",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"[email protected]\"),\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(family = \"RStudio, PBC\", role = \"cph\"),\n person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\")\n )",
"Copyright": "RStudio, PBC; Joyent, Inc.; Nginx Inc.; Igor Sysoev; Niels\nProvos; Internet Systems Consortium, Inc.; Alexander Chemeris;\nBerkeley Software Design; Google Inc.; Sony Mobile\nCommunications AB; Alexander Peslyak; Free Software Foundation,\nInc.; X Consortium; Ben Noordhuis; StrongLoop, Inc.; Saúl\nIbarra Corretgé; Bert Belder; Fedor Indutny; libuv project;\nRefael Ackermann; Kenneth MacKay; Emergya; Diego Pettenò; xine\nproject, The Regents of the University of California, Dariusz\nDwornikowski",
"Description": "Provides low-level socket and protocol support for handling\n HTTP and WebSocket requests directly from within R. It is primarily\n intended as a building block for other packages, rather than making it\n particularly easy to create complete web applications using httpuv alone.\n httpuv is built on top of the libuv and http-parser C libraries, both of\n which were developed by Joyent, Inc. (See LICENSE file for libuv and\n http-parser license information.)",