-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
1370 lines (1370 loc) · 93.9 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": "3.4.3",
"metadata": {
"appmode": "rmd-static",
"primary_rmd": "example.Rmd",
"primary_html": null,
"content_category": null,
"has_parameters": true
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.72.0-3",
"Date": "2019-12-28",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "Boost provides free peer-reviewed portable C++ source \n libraries. A large part of Boost is provided as C++ template code\n which is resolved entirely at compile-time without linking. This \n package aims to provide the most useful subset of Boost libraries \n for template use among CRAN packages. By placing these libraries in \n this package, we offer a more efficient distribution system for CRAN \n as replication of this code in the sources of other packages is \n avoided. As of release 1.72.0-3, the following Boost libraries are\n included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'bimap'\n 'bind' 'circular_buffer' 'compute' 'concept' 'config' 'container'\n 'date_time' 'detail' 'dynamic_bitset' 'exception' 'flyweight'\n 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap' 'icl'\n 'integer' 'interprocess' 'intrusive' 'io' 'iostreams' 'iterator'\n 'math' 'move' 'mp11' 'mpl' 'multiprcecision' 'numeric' 'pending'\n 'phoenix' 'polygon' 'preprocessor' 'propery_tree' 'random' 'range'\n 'scope_exit' 'smart_ptr' 'sort' 'spirit' 'tuple' 'type_traits'\n 'typeof' 'unordered' 'utility' 'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Packaged": "2019-12-28 14:48:54.73981 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-01-08 23:20:08 UTC",
"Built": "R 3.4.3; ; 2020-03-08 18:36:28 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.4.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@stdout.org\")",
"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": "knitr, microbenchmark, pryr, testthat, ggplot2, scales",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"LazyData": "true",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "no",
"Packaged": "2019-11-12 20:00:15 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <winston@stdout.org>",
"Repository": "CRAN",
"Date/Publication": "2019-11-12 22:50:03 UTC",
"Built": "R 3.4.3; ; 2020-03-08 18:36:18 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.3",
"Date": "2019-11-08",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"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 <http://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.",
"Depends": "R (>= 3.0.0)",
"Imports": "methods, utils",
"Suggests": "RUnit, inline, rbenchmark, knitr, rmarkdown, pinp, pkgKitten\n(>= 0.1.2)",
"VignetteBuilder": "knitr",
"URL": "http://www.rcpp.org, http://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "Please send questions and comments regarding Rcpp to\nrcpp-devel@lists.r-forge.r-project.org",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-11-08 18:25:32.94843 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2019-11-08 23:44:12",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-08 18:35:52 UTC; unix"
}
},
"assertthat": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "assertthat",
"Title": "Easy Pre and Post Assertions",
"Version": "0.2.1",
"Authors@R": "\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", c(\"aut\", \"cre\"))",
"Description": "An extension to stopifnot() that makes it easy to declare \n the pre and post conditions that you code should satisfy, while also \n producing friendly error messages so that your users know what's gone\n wrong.",
"License": "GPL-3",
"Imports": "tools",
"Suggests": "testthat, covr",
"RoxygenNote": "6.0.1",
"Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r'\n'assertions-scalar.R' 'assertions.r' 'base.r'\n'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r'\n'utils.r' 'validate-that.R'",
"NeedsCompilation": "no",
"Packaged": "2019-03-21 13:11:01 UTC; hadley",
"Author": "Hadley Wickham [aut, cre]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "RSPM",
"Date/Publication": "2019-03-21 14:53:46 UTC",
"Encoding": "UTF-8",
"Built": "R 3.4.3; ; 2019-03-26 11:29:43 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Maintainer": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"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 3.4.0; x86_64-apple-darwin15.6.0; 2017-04-21 21:26:37 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "2.0.2",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = c(\"ctb\")),\n person(\"Kirill\", \"Müller\", role = c(\"ctb\"))\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 integrates with the\n 'crayon' package to support 'ANSI' terminal colors.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"RoxygenNote": "7.0.2",
"Depends": "R (>= 2.10)",
"Imports": "assertthat, crayon (>= 1.3.4), glue, methods, utils, fansi",
"Suggests": "callr, covr, htmlwidgets, knitr, mockery, rmarkdown,\nrstudioapi, prettycode (>= 1.1.0), testthat, withr",
"Encoding": "UTF-8",
"VignetteBuilder": "cli",
"NeedsCompilation": "no",
"Packaged": "2020-02-27 13:43:04 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2020-02-28 12:10:13 UTC",
"Built": "R 3.4.3; ; 2020-03-02 03:43:53 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.3.4",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\",\n role = c(\"aut\", \"cre\")),\n person(\n \"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\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": "'ansi-256.r' 'combine.r' 'string.r' 'utils.r'\n'crayon-package.r' 'disposable.r' 'has_ansi.r' 'has_color.r'\n'styles.r' 'machinery.r' 'parts.r' 'print.r' 'style-var.r'\n'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "6.0.1.9000",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2017-09-15 18:14:04 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "RSPM",
"Date/Publication": "2017-09-16 19:49:46 UTC",
"Built": "R 3.4.3; ; 2019-09-02 04:04:34 UTC; unix"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <edd@debian.org> 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, and Bill Denney.",
"Version": "0.6.25",
"Date": "2020-02-22",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation \n of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', \n 'crc32', 'xxhash', 'murmurhash' and 'spookyhash' 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.1.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, knitr, rmarkdown",
"VignetteBuilder": "knitr",
"NeedsCompilation": "yes",
"Packaged": "2020-02-22 14:55:28.282493 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-02-23 00:10:02 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-02 03:48:49 UTC; unix"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "ellipsis",
"Version": "0.3.0",
"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\", , \"hadley@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "6.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": "2019-09-20 20:15:40 UTC; jhester",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <hadley@rstudio.com>",
"Repository": "RSPM",
"Date/Publication": "2019-09-20 20:40:02 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-10-31 20:52:33 UTC; unix"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"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 = \"xie@yihui.name\", 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 <xie@yihui.name>",
"Repository": "RSPM",
"Date/Publication": "2019-05-28 15:50:02 UTC",
"Built": "R 3.4.3; ; 2019-07-20 02:55:54 UTC; unix"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"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.4.1",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"R-core@r-project.org\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL (>= 2)",
"LazyData": "true",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"RoxygenNote": "6.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": "2020-01-06 01:58:57 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 <brodie.gaslam@yahoo.com>",
"Repository": "RSPM",
"Date/Publication": "2020-01-08 23:01:29 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-01-28 14:21:29 UTC; unix"
}
},
"glue": {
"Source": "github",
"Repository": null,
"GithubRepo": "glue",
"GithubUsername": "tidyverse",
"GithubRef": "master",
"GithubSha1": "0cbbb17f7d6419b5a97a491e064f1b5729d85528",
"description": {
"Package": "glue",
"Title": "Interpreted String Literals",
"Version": "1.3.2",
"Authors@R": "person(\"Jim\", \"Hester\", email = \"james.f.hester@gmail.com\", 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/stable/manual/strings/#triple-quoted-string-literals>.",
"Depends": "R (>= 3.1)",
"Imports": "methods",
"Suggests": "testthat, covr, magrittr, crayon, knitr, rmarkdown, DBI,\nRSQLite, R.utils, forcats, microbenchmark, rprintf, stringr,\nggplot2, dplyr, withr, vctrs (>= 0.2.2)",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.0.2",
"Roxygen": "list(markdown = TRUE)",
"URL": "https://github.com/tidyverse/glue, https://glue.tidyverse.org/",
"BugReports": "https://github.com/tidyverse/glue/issues",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "glue",
"RemoteUsername": "tidyverse",
"RemoteRef": "master",
"RemoteSha": "0cbbb17f7d6419b5a97a491e064f1b5729d85528",
"GithubRepo": "glue",
"GithubUsername": "tidyverse",
"GithubRef": "master",
"GithubSHA1": "0cbbb17f7d6419b5a97a491e064f1b5729d85528",
"NeedsCompilation": "yes",
"Packaged": "2020-03-15 18:21:28 UTC; carendt",
"Author": "Jim Hester [aut, cre]",
"Maintainer": "Jim Hester <james.f.hester@gmail.com>",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-15 18:21:28 UTC; unix"
}
},
"highr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "highr",
"Type": "Package",
"Title": "Syntax Highlighting for R Source Code",
"Version": "0.8",
"Authors@R": "c(person(\"Christopher\", \"Gandrud\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\"),\n person(\"Yixuan\", \"Qiu\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", email = \"xie@yihui.name\", role = c(\"aut\", \"cre\")))",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"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)",
"Suggests": "knitr, testit",
"License": "GPL",
"URL": "https://github.com/yihui/highr",
"BugReports": "https://github.com/yihui/highr/issues",
"VignetteBuilder": "knitr",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "no",
"Packaged": "2019-03-20 18:58:08 UTC; yihui",
"Author": "Christopher Gandrud [ctb],\n Qiang Li [ctb],\n Yixuan Qiu [aut],\n Yihui Xie [aut, cre]",
"Repository": "RSPM",
"Date/Publication": "2019-03-20 21:10:33 UTC",
"Encoding": "UTF-8",
"Built": "R 3.4.3; ; 2019-07-20 02:55:54 UTC; unix"
}
},
"hms": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "hms",
"Title": "Pretty Time of Day",
"Date": "2020-01-07",
"Version": "0.5.3",
"Authors@R": "c(\n person(\"Kirill\", \"Müller\", role = c(\"aut\", \"cre\"), email = \"krlmlr+r@mailbox.org\"),\n person(\"The 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": "methods, pkgconfig, rlang, vctrs (>= 0.2.1)",
"Suggests": "crayon, lubridate, pillar (>= 1.1.0), testthat",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"URL": "https://hms.tidyverse.org/, https://github.com/tidyverse/hms",
"BugReports": "https://github.com/tidyverse/hms/issues",
"RoxygenNote": "7.0.2",
"NeedsCompilation": "no",
"Packaged": "2020-01-07 16:20:04 UTC; kirill",
"Author": "Kirill Müller [aut, cre],\n The R Consortium [fnd],\n RStudio [fnd]",
"Maintainer": "Kirill Müller <krlmlr+r@mailbox.org>",
"Repository": "RSPM",
"Date/Publication": "2020-01-08 23:01:22 UTC",
"Built": "R 3.4.3; ; 2020-01-28 14:21:12 UTC; unix"
}
},
"htmltools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "htmltools",
"Type": "Package",
"Title": "Tools for HTML",
"Version": "0.3.6",
"Date": "2017-04-26",
"Author": "RStudio, Inc.",
"Maintainer": "Joe Cheng <joe@rstudio.com>",
"Description": "Tools for HTML generation and output.",
"Depends": "R (>= 2.14.1)",
"Imports": "utils, digest, Rcpp",
"Suggests": "markdown, testthat",
"Enhances": "knitr",
"License": "GPL (>= 2)",
"URL": "https://github.com/rstudio/htmltools",
"BugReports": "https://github.com/rstudio/htmltools/issues",
"RoxygenNote": "6.0.1",
"LinkingTo": "Rcpp",
"NeedsCompilation": "yes",
"Packaged": "2017-04-27 00:04:32 UTC; jcheng",
"Repository": "RSPM",
"Date/Publication": "2017-04-28 07:41:46 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-09-02 04:19:08 UTC; unix"
}
},
"httpuv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "httpuv",
"Type": "Package",
"Title": "HTTP and WebSocket Server Library",
"Version": "1.5.1",
"Author": "Joe Cheng, Hector Corrada Bravo [ctb], Jeroen Ooms [ctb],\n Winston Chang [ctb]",
"Copyright": "RStudio, Inc.; Joyent, Inc.; Nginx Inc.; Igor Sysoev; Niels\nProvos; Internet Systems Consortium, Inc.; Alexander Chemeris",
"Maintainer": "Joe Cheng <joe@rstudio.com>",
"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.)",
"License": "GPL (>= 2) | file LICENSE",
"Depends": "R (>= 2.15.1)",
"Imports": "Rcpp (>= 0.11.0), utils, R6, promises, later (>= 0.8.0)",
"LinkingTo": "Rcpp, BH, later",
"URL": "https://github.com/rstudio/httpuv",
"SystemRequirements": "GNU make",
"RoxygenNote": "6.1.1",
"Suggests": "testthat, callr, curl",
"Collate": "'RcppExports.R' 'httpuv.R' 'server.R' 'static_paths.R'\n'utils.R'",
"NeedsCompilation": "yes",
"Packaged": "2019-04-05 20:06:25 UTC; winston",
"Repository": "RSPM",
"Date/Publication": "2019-04-05 22:10:03 UTC",
"Encoding": "UTF-8",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-09-02 04:19:29 UTC; unix"
}
},
"jsonlite": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "jsonlite",
"Version": "1.6",
"Title": "A Robust, High Performance JSON Parser and Generator for R",
"License": "MIT + file LICENSE",
"NeedsCompilation": "yes",
"Depends": "methods",
"Author": "Jeroen Ooms, Duncan Temple Lang, Lloyd Hilaiel",
"URL": "https://arxiv.org/abs/1403.2805,\nhttps://www.opencpu.org/posts/jsonlite-a-smarter-json-encoder",
"BugReports": "http://github.com/jeroen/jsonlite/issues",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"VignetteBuilder": "knitr, R.rsp",
"Description": "A fast JSON parser and generator optimized for statistical data\n and the web. Started out as a fork of 'RJSONIO', but has been completely\n rewritten in recent versions. The package offers flexible, robust, high\n performance tools for working with JSON in R and is particularly powerful\n for building pipelines and interacting with a web API. The implementation is\n based on the mapping described in the vignette (Ooms, 2014). In addition to\n converting JSON data from/to R objects, 'jsonlite' contains functions to\n stream, validate, and prettify JSON data. The unit tests included with the\n package verify that all edge cases are encoded and decoded consistently for\n use with dynamic data in systems and applications.",
"Suggests": "httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sp",
"RoxygenNote": "6.1.1",
"Packaged": "2018-12-07 11:22:02 UTC; jeroen",
"Repository": "RSPM",
"Date/Publication": "2018-12-07 12:50:02 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-09-02 04:18:34 UTC; unix"
}
},
"knitr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "knitr",
"Type": "Package",
"Title": "A General-Purpose Package for Dynamic Report Generation in R",
"Version": "1.27",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Adam\", \"Vogt\", role = \"ctb\"),\n person(\"Alastair\", \"Andrew\", role = \"ctb\"),\n person(\"Alex\", \"Zvoleff\", role = \"ctb\"),\n person(\"Andre\", \"Simon\", role = \"ctb\", comment = \"the CSS files under inst/themes/ were derived from the Highlight package http://www.andre-simon.de\"),\n person(\"Aron\", \"Atkins\", role = \"ctb\"),\n person(\"Aaron\", \"Wolen\", role = \"ctb\"),\n person(\"Ashley\", \"Manton\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Ben\", \"Baumer\", role = \"ctb\"),\n person(\"Brian\", \"Diggs\", role = \"ctb\"),\n person(\"Brian\", \"Zhang\", role = \"ctb\"),\n person(\"Cassio\", \"Pereira\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"David\", \"Hugh-Jones\", role = \"ctb\"),\n person(\"David\", \"Robinson\", role = \"ctb\"),\n person(\"Doug\", \"Hemken\", role = \"ctb\"),\n person(\"Duncan\", \"Murdoch\", role = \"ctb\"),\n person(\"Elio\", \"Campitelli\", role = \"ctb\"),\n person(\"Emily\", \"Riederer\", role = \"ctb\"),\n person(\"Fabian\", \"Hirschmann\", role = \"ctb\"),\n person(\"Fitch\", \"Simeon\", role = \"ctb\"),\n person(\"Forest\", \"Fang\", role = \"ctb\"),\n person(c(\"Frank\", \"E\", \"Harrell\", \"Jr\"), role = \"ctb\", comment = \"the Sweavel package at inst/misc/Sweavel.sty\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"ctb\"),\n person(\"Gregoire\", \"Detrez\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Hao\", \"Zhu\", role = \"ctb\"),\n person(\"Heewon\", \"Jeon\", role = \"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Ian\", \"Lyttle\", role = \"ctb\"),\n person(\"Hodges\", \"Daniel\", role = \"ctb\"),\n person(\"Jake\", \"Burkhead\", role = \"ctb\"),\n person(\"James\", \"Manton\", role = \"ctb\"),\n person(\"Jared\", \"Lander\", role = \"ctb\"),\n person(\"Jason\", \"Punyon\", role = \"ctb\"),\n person(\"Javier\", \"Luraschi\", role = \"ctb\"),\n person(\"Jeff\", \"Arnold\", role = \"ctb\"),\n person(\"Jenny\", \"Bryan\", role = \"ctb\"),\n person(\"Jeremy\", \"Ashkenas\", role = c(\"ctb\", \"cph\"), comment = \"the CSS file at inst/misc/docco-classic.css\"),\n person(\"Jeremy\", \"Stephens\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", role = \"ctb\"),\n person(\"Joe\", \"Cheng\", role = \"ctb\"),\n person(\"Johannes\", \"Ranke\", role = \"ctb\"),\n person(\"John\", \"Honaker\", role = \"ctb\"),\n person(\"John\", \"Muschelli\", role = \"ctb\"),\n person(\"Jonathan\", \"Keane\", role = \"ctb\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Johan\", \"Toloe\", role = \"ctb\"),\n person(\"Jonathan\", \"Sidi\", role = \"ctb\"),\n person(\"Joseph\", \"Larmarange\", role = \"ctb\"),\n person(\"Julien\", \"Barnier\", role = \"ctb\"),\n person(\"Kaiyin\", \"Zhong\", role = \"ctb\"),\n person(\"Kamil\", \"Slowikowski\", role = \"ctb\"),\n person(\"Karl\", \"Forner\", role = \"ctb\"),\n person(c(\"Kevin\", \"K.\"), \"Smith\", role = \"ctb\"),\n person(\"Kirill\", \"Mueller\", role = \"ctb\"),\n person(\"Kohske\", \"Takahashi\", role = \"ctb\"),\n person(\"Lorenz\", \"Walthert\", role = \"ctb\"),\n person(\"Lucas\", \"Gallindo\", role = \"ctb\"),\n person(\"Marius\", \"Hofert\", role = \"ctb\"),\n person(\"Martin\", \"Modrák\", role = \"ctb\"),\n person(\"Michael\", \"Chirico\", role = \"ctb\"),\n person(\"Michael\", \"Friendly\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Michel\", \"Kuhlmann\", role = \"ctb\"),\n person(\"Miller\", \"Patrick\", role = \"ctb\"),\n person(\"Nacho\", \"Caballero\", role = \"ctb\"),\n person(\"Nick\", \"Salkowski\", role = \"ctb\"),\n person(\"Niels Richard\", \"Hansen\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Obada\", \"Mahdi\", role = \"ctb\"),\n person(\"Qiang\", \"Li\", role = \"ctb\"),\n person(\"Ramnath\", \"Vaidyanathan\", role = \"ctb\"),\n person(\"Richard\", \"Cotton\", role = \"ctb\"),\n person(\"Robert\", \"Krzyzanowski\", role = \"ctb\"),\n person(\"Romain\", \"Francois\", role = \"ctb\"),\n person(\"Ruaridh\", \"Williamson\", role = \"ctb\"),\n person(\"Scott\", \"Kostyshak\", role = \"ctb\"),\n person(\"Sebastian\", \"Meyer\", role = \"ctb\"),\n person(\"Sietse\", \"Brouwer\", role = \"ctb\"),\n person(c(\"Simon\", \"de\"), \"Bernard\", role = \"ctb\"),\n person(\"Sylvain\", \"Rousseau\", role = \"ctb\"),\n person(\"Taiyun\", \"Wei\", role = \"ctb\"),\n person(\"Thibaut\", \"Assus\", role = \"ctb\"),\n person(\"Thibaut\", \"Lamadon\", role = \"ctb\"),\n person(\"Thomas\", \"Leeper\", role = \"ctb\"),\n person(\"Tim\", \"Mastny\", role = \"ctb\"),\n person(\"Tom\", \"Torsney-Weir\", role = \"ctb\"),\n person(\"Trevor\", \"Davis\", role = \"ctb\"),\n person(\"Viktoras\", \"Veitas\", role = \"ctb\"),\n person(\"Weicheng\", \"Zhu\", role = \"ctb\"),\n person(\"Wush\", \"Wu\", role = \"ctb\"),\n person(\"Zachary\", \"Foster\", role = \"ctb\")\n )",
"Description": "Provides a general-purpose tool for dynamic report generation in R\n using Literate Programming techniques.",
"Depends": "R (>= 3.2.3)",
"Imports": "evaluate (>= 0.10), highr, markdown, stringr (>= 0.6), yaml\n(>= 2.1.19), methods, xfun, tools",
"Suggests": "formatR, testit, digest, rgl (>= 0.95.1201), codetools,\nrmarkdown, htmlwidgets (>= 0.7), webshot, tikzDevice (>= 0.10),\ntinytex, reticulate (>= 1.4), JuliaCall (>= 0.11.1), magick,\npng, jpeg, gifski, xml2 (>= 1.2.0), httr, DBI (>= 0.4-1),\nshowtext, tibble, sass, styler (>= 1.2.0)",
"License": "GPL",
"URL": "https://yihui.org/knitr/",
"BugReports": "https://github.com/yihui/knitr/issues",
"Encoding": "UTF-8",
"VignetteBuilder": "knitr",
"SystemRequirements": "Package vignettes based on R Markdown v2 or\nreStructuredText require Pandoc (http://pandoc.org). The\nfunction rst2pdf() require rst2pdf\n(https://github.com/rst2pdf/rst2pdf).",
"Collate": "'block.R' 'cache.R' 'utils.R' 'citation.R' 'hooks-html.R'\n'plot.R' 'defaults.R' 'concordance.R' 'engine.R' 'highlight.R'\n'themes.R' 'header.R' 'hooks-asciidoc.R' 'hooks-chunk.R'\n'hooks-extra.R' 'hooks-latex.R' 'hooks-md.R' 'hooks-rst.R'\n'hooks-textile.R' 'hooks.R' 'output.R' 'package.R' 'pandoc.R'\n'params.R' 'parser.R' 'pattern.R' 'rocco.R' 'spin.R' 'table.R'\n'template.R' 'utils-base64.R' 'utils-conversion.R'\n'utils-rd2html.R' 'utils-sweave.R' 'utils-upload.R'\n'utils-vignettes.R' 'zzz.R'",
"RoxygenNote": "7.0.2",
"NeedsCompilation": "no",
"Packaged": "2020-01-16 16:15:23 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Adam Vogt [ctb],\n Alastair Andrew [ctb],\n Alex Zvoleff [ctb],\n Andre Simon [ctb] (the CSS files under inst/themes/ were derived from\n the Highlight package http://www.andre-simon.de),\n Aron Atkins [ctb],\n Aaron Wolen [ctb],\n Ashley Manton [ctb],\n Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>),\n Ben Baumer [ctb],\n Brian Diggs [ctb],\n Brian Zhang [ctb],\n Cassio Pereira [ctb],\n Christophe Dervieux [ctb],\n David Hugh-Jones [ctb],\n David Robinson [ctb],\n Doug Hemken [ctb],\n Duncan Murdoch [ctb],\n Elio Campitelli [ctb],\n Emily Riederer [ctb],\n Fabian Hirschmann [ctb],\n Fitch Simeon [ctb],\n Forest Fang [ctb],\n Frank E Harrell Jr [ctb] (the Sweavel package at inst/misc/Sweavel.sty),\n Garrick Aden-Buie [ctb],\n Gregoire Detrez [ctb],\n Hadley Wickham [ctb],\n Hao Zhu [ctb],\n Heewon Jeon [ctb],\n Henrik Bengtsson [ctb],\n Hiroaki Yutani [ctb],\n Ian Lyttle [ctb],\n Hodges Daniel [ctb],\n Jake Burkhead [ctb],\n James Manton [ctb],\n Jared Lander [ctb],\n Jason Punyon [ctb],\n Javier Luraschi [ctb],\n Jeff Arnold [ctb],\n Jenny Bryan [ctb],\n Jeremy Ashkenas [ctb, cph] (the CSS file at\n inst/misc/docco-classic.css),\n Jeremy Stephens [ctb],\n Jim Hester [ctb],\n Joe Cheng [ctb],\n Johannes Ranke [ctb],\n John Honaker [ctb],\n John Muschelli [ctb],\n Jonathan Keane [ctb],\n JJ Allaire [ctb],\n Johan Toloe [ctb],\n Jonathan Sidi [ctb],\n Joseph Larmarange [ctb],\n Julien Barnier [ctb],\n Kaiyin Zhong [ctb],\n Kamil Slowikowski [ctb],\n Karl Forner [ctb],\n Kevin K. Smith [ctb],\n Kirill Mueller [ctb],\n Kohske Takahashi [ctb],\n Lorenz Walthert [ctb],\n Lucas Gallindo [ctb],\n Marius Hofert [ctb],\n Martin Modrák [ctb],\n Michael Chirico [ctb],\n Michael Friendly [ctb],\n Michal Bojanowski [ctb],\n Michel Kuhlmann [ctb],\n Miller Patrick [ctb],\n Nacho Caballero [ctb],\n Nick Salkowski [ctb],\n Niels Richard Hansen [ctb],\n Noam Ross [ctb],\n Obada Mahdi [ctb],\n Qiang Li [ctb],\n Ramnath Vaidyanathan [ctb],\n Richard Cotton [ctb],\n Robert Krzyzanowski [ctb],\n Romain Francois [ctb],\n Ruaridh Williamson [ctb],\n Scott Kostyshak [ctb],\n Sebastian Meyer [ctb],\n Sietse Brouwer [ctb],\n Simon de Bernard [ctb],\n Sylvain Rousseau [ctb],\n Taiyun Wei [ctb],\n Thibaut Assus [ctb],\n Thibaut Lamadon [ctb],\n Thomas Leeper [ctb],\n Tim Mastny [ctb],\n Tom Torsney-Weir [ctb],\n Trevor Davis [ctb],\n Viktoras Veitas [ctb],\n Weicheng Zhu [ctb],\n Wush Wu [ctb],\n Zachary Foster [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM",
"Date/Publication": "2020-01-16 18:50:02 UTC",
"Built": "R 3.4.3; ; 2020-02-09 12:34:54 UTC; unix"
}
},
"later": {
"Source": "github",
"Repository": null,
"GithubRepo": "later",
"GithubUsername": "r-lib",
"GithubRef": "master",
"GithubSha1": "0fb877adcfdf8166eb5b505fe99bcf2f9bedacd3",
"description": {
"Package": "later",
"Type": "Package",
"Title": "Utilities for Scheduling Functions to Execute Later with Event\nLoops",
"Version": "1.0.0.9002",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = c(\"aut\", \"cre\"), email = \"joe@rstudio.com\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(\"Winston\", \"Chang\", role = c(\"aut\"), email = \"winston@rstudio.com\"),\n person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"),\n person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\")\n )",
"Description": "Executes arbitrary R or C functions some time after the current\n time, after the R execution stack has emptied. The functions are scheduled\n in an event loop.",
"URL": "https://github.com/r-lib/later",
"BugReports": "https://github.com/r-lib/later/issues",
"License": "GPL (>= 2)",
"Imports": "Rcpp (>= 0.12.9), rlang",
"LinkingTo": "Rcpp, BH",
"Roxygen": "list(markdown = TRUE)",
"RoxygenNote": "7.0.2",
"Suggests": "knitr, rmarkdown, testthat",
"VignetteBuilder": "knitr",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "later",
"RemoteUsername": "r-lib",
"RemoteRef": "master",
"RemoteSha": "0fb877adcfdf8166eb5b505fe99bcf2f9bedacd3",
"GithubRepo": "later",
"GithubUsername": "r-lib",
"GithubRef": "master",
"GithubSHA1": "0fb877adcfdf8166eb5b505fe99bcf2f9bedacd3",
"NeedsCompilation": "yes",
"Packaged": "2020-03-08 18:37:57 UTC; carendt",
"Author": "Joe Cheng [aut, cre],\n RStudio [cph],\n Winston Chang [aut],\n Marcus Geelnard [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/),\n Evan Nemerson [ctb, cph] (TinyCThread library,\n https://tinycthread.github.io/)",
"Maintainer": "Joe Cheng <joe@rstudio.com>",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-08 18:37:58 UTC; unix"
}
},
"magrittr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "magrittr",
"Type": "Package",
"Title": "A Forward-Pipe Operator for R",
"Version": "1.5",
"Author": "Stefan Milton Bache <stefan@stefanbache.dk> and\n Hadley Wickham <h.wickham@gmail.com>",
"Maintainer": "Stefan Milton Bache <stefan@stefanbache.dk>",
"Description": "Provides a mechanism for chaining commands with a\n new forward-pipe operator, %>%. This operator will forward a\n value, or the result of an expression, into the next function\n call/expression. There is flexible support for the type\n of right-hand side expressions. For more information, see\n package vignette.\n To quote Rene Magritte, \"Ceci n'est pas un pipe.\"",
"Suggests": "testthat, knitr",
"VignetteBuilder": "knitr",
"License": "MIT + file LICENSE",
"ByteCompile": "Yes",
"Packaged": "2014-11-22 08:50:53 UTC; shb",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2014-11-22 19:15:57",
"Built": "R 3.4.0; ; 2017-04-21 21:17:20 UTC; unix"
}
},
"markdown": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "markdown",
"Type": "Package",
"Title": "Render Markdown with the C Library 'Sundown'",
"Version": "1.1",
"Authors@R": "c(\n person(\"JJ\", \"Allaire\", role = \"aut\"),\n person(\"Jeffrey\", \"Horner\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Henrik\", \"Bengtsson\", role = \"ctb\"),\n person(\"Jim\", \"Hester\", role = \"ctb\"),\n person(\"Yixuan\", \"Qiu\", role = \"ctb\"),\n person(\"Kohske\", \"Takahashi\", role = \"ctb\"),\n person(\"Adam\", \"November\", role = \"ctb\"),\n person(\"Nacho\", \"Caballero\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Thomas\", \"Leeper\", role = \"ctb\"),\n person(\"Joe\", \"Cheng\", role = \"ctb\"),\n person(\"Andrzej\", \"Oles\", role = \"ctb\"),\n person(\"Vicent\", \"Marti\", role = c(\"aut\", \"cph\"), comment = \"The Sundown library\"),\n person(\"Natacha\", \"Porte\", role = c(\"aut\", \"cph\"), comment = \"The Sundown library\"),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description": "Provides R bindings to the 'Sundown' Markdown rendering library\n (<https://github.com/vmg/sundown>). Markdown is a plain-text formatting\n syntax that can be converted to 'XHTML' or other formats. See\n <http://en.wikipedia.org/wiki/Markdown> for more information about Markdown.",
"Depends": "R (>= 2.11.1)",
"Imports": "utils, xfun, mime (>= 0.3)",
"Suggests": "knitr, RCurl",
"License": "GPL-2",
"URL": "https://github.com/rstudio/markdown",
"BugReports": "https://github.com/rstudio/markdown/issues",
"VignetteBuilder": "knitr",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2019-08-07 15:59:28 UTC; yihui",
"Author": "JJ Allaire [aut],\n Jeffrey Horner [aut],\n Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Henrik Bengtsson [ctb],\n Jim Hester [ctb],\n Yixuan Qiu [ctb],\n Kohske Takahashi [ctb],\n Adam November [ctb],\n Nacho Caballero [ctb],\n Jeroen Ooms [ctb],\n Thomas Leeper [ctb],\n Joe Cheng [ctb],\n Andrzej Oles [ctb],\n Vicent Marti [aut, cph] (The Sundown library),\n Natacha Porte [aut, cph] (The Sundown library),\n RStudio [cph]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM",
"Date/Publication": "2019-08-07 16:30:02 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-12-10 02:19:28 UTC; unix"
}
},
"mime": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "mime",
"Type": "Package",
"Title": "Map Filenames to MIME Types",
"Version": "0.7",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Jeffrey\", \"Horner\", role = \"ctb\"),\n person(\"Beilei\", \"Bian\", role = \"ctb\")\n )",
"Description": "Guesses the MIME type from a filename extension using the data\n derived from /etc/mime.types in UNIX-type systems.",
"Imports": "tools",
"License": "GPL",
"URL": "https://github.com/yihui/mime",
"BugReports": "https://github.com/yihui/mime/issues",
"LazyData": "TRUE",
"RoxygenNote": "6.1.0",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2019-06-11 19:49:18 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Jeffrey Horner [ctb],\n Beilei Bian [ctb]",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Repository": "RSPM",
"Date/Publication": "2019-06-11 20:10:03 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-09-02 04:18:37 UTC; unix"
}
},
"pillar": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "pillar",
"Title": "Coloured Formatting for Columns",
"Version": "1.4.3",
"Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"krlmlr+r@mailbox.org\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "Provides 'pillar' and 'colonnade' generics designed\n for formatting columns of data using the full range of colours\n provided by modern terminals.",
"License": "GPL-3",
"URL": "https://github.com/r-lib/pillar",
"BugReports": "https://github.com/r-lib/pillar/issues",
"Imports": "cli, crayon (>= 1.3.4), fansi, rlang (>= 0.3.0), utf8 (>=\n1.1.0), vctrs (>= 0.2.0)",
"Suggests": "knitr, lubridate, testthat (>= 2.0.0), withr",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.0.2",
"Collate": "'capital.R' 'compat-lifecycle.R' 'compat-purrr.R' 'dim.R'\n'empty-data.R' 'extent.R' 'lengths.R' 'multi.R' 'ornament.R'\n'pillar-package.R' 'pillar.R' 'rowid-capital.R' 'rowid-data.R'\n'rowid-title.R' 'rowid-type.R' 'scientific.R' 'shaft.R'\n'shaft-simple.R' 'sigfig.R' 'spark-bar.R' 'spark-line.R'\n'strrep.R' 'styles.R' 'testthat.R' 'tick.R' 'title.R'\n'type-sum.R' 'type.R' 'utils.R' 'vctrs.R' 'width.R' 'zzz.R'",
"NeedsCompilation": "no",
"Packaged": "2019-12-19 23:39:03 UTC; kirill",
"Author": "Kirill Müller [aut, cre],\n Hadley Wickham [aut],\n RStudio [cph]",
"Maintainer": "Kirill Müller <krlmlr+r@mailbox.org>",
"Repository": "RSPM",
"Date/Publication": "2019-12-20 06:30:11 UTC",
"Built": "R 3.4.3; ; 2020-01-28 14:21:33 UTC; unix"
}
},
"pkgconfig": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "pkgconfig",
"Title": "Private Configuration for 'R' Packages",
"Version": "2.0.3",
"Author": "Gábor Csárdi",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Description": "Set configuration options on a per-package basis.\n Options set by a given package only apply to that package,\n other packages are unaffected.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"Imports": "utils",
"Suggests": "covr, testthat, disposables (>= 1.0.3)",
"URL": "https://github.com/r-lib/pkgconfig#readme",
"BugReports": "https://github.com/r-lib/pkgconfig/issues",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2019-09-22 08:42:40 UTC; gaborcsardi",
"Repository": "RSPM",
"Date/Publication": "2019-09-22 09:20:02 UTC",
"Built": "R 3.4.3; ; 2019-10-31 20:52:34 UTC; unix"
}
},
"promises": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "promises",
"Type": "Package",
"Title": "Abstractions for Promise-Based Asynchronous Programming",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", email = \"joe@rstudio.com\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Provides fundamental abstractions for doing asynchronous programming\n in R using promises. Asynchronous programming is useful for allowing a single\n R process to orchestrate multiple tasks in the background while also attending\n to something else. Semantics are similar to 'JavaScript' promises, but with a\n syntax that is idiomatic R.",
"License": "MIT + file LICENSE",
"Imports": "R6, Rcpp, later, rlang, stats, magrittr",
"Suggests": "testthat, future, knitr, rmarkdown",
"LinkingTo": "later, Rcpp",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"LazyData": "true",
"VignetteBuilder": "knitr",
"URL": "https://rstudio.github.io/promises,\nhttps://github.com/rstudio/promises",
"BugReports": "https://github.com/rstudio/promises/issues",
"NeedsCompilation": "yes",
"Packaged": "2019-10-04 16:59:31 UTC; jcheng",
"Author": "Joe Cheng [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Joe Cheng <joe@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2019-10-04 23:00:05 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-16 19:11:32 UTC; unix"
}
},
"readr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "readr",
"Version": "1.1.1",
"Title": "Read Rectangular Text Data",
"Description": "The goal of 'readr' is to provide a fast and friendly way to read\n rectangular data (like 'csv', 'tsv', and 'fwf'). It is designed to flexibly\n parse many types of data found in the wild, while still cleanly failing when\n data unexpectedly changes.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", \"aut\"),\n person(\"Jim\", \"Hester\", , \"james.hester@rstudio.com\", c(\"aut\", \"cre\")),\n person(\"Romain\", \"Francois\", role = \"aut\"),\n person(\"R Core Team\", role = \"ctb\", comment = \"Date time code adapted from R\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\")),\n person(\"Jukka\", \"Jylänki\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"),\n person(\"Mikkel\", \"Jørgensen\", role = c(\"ctb\", \"cph\"), comment = \"grisu3 implementation\"))",
"Encoding": "UTF-8",
"Depends": "R (>= 3.0.2)",
"LinkingTo": "Rcpp, BH",
"Imports": "Rcpp (>= 0.12.0.5), tibble, hms, R6",
"Suggests": "curl, testthat, knitr, rmarkdown, stringi, covr",
"License": "GPL (>= 2) | file LICENSE",
"BugReports": "https://github.com/tidyverse/readr/issues",
"URL": "http://readr.tidyverse.org, https://github.com/tidyverse/readr",
"VignetteBuilder": "knitr",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2017-05-16 16:03:56 UTC; jhester",
"Author": "Hadley Wickham [aut],\n Jim Hester [aut, cre],\n Romain Francois [aut],\n R Core Team [ctb] (Date time code adapted from R),\n RStudio [cph, fnd],\n Jukka Jylänki [ctb, cph] (grisu3 implementation),\n Mikkel Jørgensen [ctb, cph] (grisu3 implementation)",
"Maintainer": "Jim Hester <james.hester@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2017-05-16 19:03:57 UTC",
"Built": "R 3.4.0; x86_64-apple-darwin15.6.0; 2017-05-17 03:46:57 UTC; unix"
}
},
"rlang": {
"Source": "github",
"Repository": null,
"GithubRepo": "rlang",
"GithubUsername": "r-lib",
"GithubRef": "master",
"GithubSha1": "3fdbb00a22207c867f81786e0c53c565ab844bfd",
"description": {
"Package": "rlang",
"Version": "0.4.5.9000",
"Title": "Functions for Base Types and Core R and 'Tidyverse' Features",
"Description": "A toolbox for working with base types, core R features\n like the condition system, and core 'Tidyverse' features like tidy\n evaluation.",
"Authors@R": "c(\n person(\"Lionel\", \"Henry\", ,\"lionel@rstudio.com\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", ,\"hadley@rstudio.com\", \"aut\"),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "GPL-3",
"LazyData": "true",
"ByteCompile": "true",
"Biarch": "true",
"Depends": "R (>= 3.2.0)",
"Suggests": "cli, covr, crayon, glue, magrittr, methods, pillar,\nrmarkdown, testthat (>= 2.3.0), vctrs (>= 0.2.3)",
"Encoding": "UTF-8",
"RoxygenNote": "7.0.2",
"Roxygen": "list(markdown = TRUE)",
"URL": "http://rlang.r-lib.org, https://github.com/r-lib/rlang",
"BugReports": "https://github.com/r-lib/rlang/issues",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "rlang",
"RemoteUsername": "r-lib",
"RemoteRef": "master",
"RemoteSha": "3fdbb00a22207c867f81786e0c53c565ab844bfd",
"GithubRepo": "rlang",
"GithubUsername": "r-lib",
"GithubRef": "master",
"GithubSHA1": "3fdbb00a22207c867f81786e0c53c565ab844bfd",
"NeedsCompilation": "yes",
"Packaged": "2020-03-15 18:21:20 UTC; carendt",
"Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut],\n RStudio [cph]",
"Maintainer": "Lionel Henry <lionel@rstudio.com>",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-15 18:21:21 UTC; unix"
}
},
"rmarkdown": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "rmarkdown",
"Type": "Package",
"Title": "Dynamic Documents for R",
"Version": "1.18",
"Authors@R": "c(\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@rstudio.com\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"xie@yihui.name\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@rstudio.com\"),\n person(\"Javier\", \"Luraschi\", role = \"aut\", email = \"javier@rstudio.com\"),\n person(\"Kevin\", \"Ushey\", role = \"aut\", email = \"kevin@rstudio.com\"),\n person(\"Aron\", \"Atkins\", role = \"aut\", email = \"aron@rstudio.com\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\", email = \"hadley@rstudio.com\"),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(\"Winston\", \"Chang\", role = \"aut\", email = \"winston@rstudio.com\"),\n person(\"Richard\", \"Iannone\", role = \"aut\", email = \"rich@rstudio.com\", comment = c(ORCID = \"0000-0003-3925-190X\")),\n #\n # Contributors, ordered alphabetically by first name\n person(\"Andrew\", \"Dunning\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"Frederik\", \"Aust\", role = \"ctb\", email = \"frederik.aust@uni-koeln.de\", comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(\"Jeff\", \"Allen\", role = \"ctb\", email = \"jeff@rstudio.com\"),\n person(\"Malcolm\", \"Barrett\", role = \"ctb\"),\n person(\"Rob\", \"Hyndman\", role = \"ctb\", email = \"Rob.Hyndman@monash.edu\"),\n person(\"Romain\", \"Lesur\", role = \"ctb\"),\n person(\"Roy\", \"Storey\", role = \"ctb\"),\n person(\"Ruben\", \"Arslan\", role = \"ctb\", email = \"ruben.arslan@uni-goettingen.de\"),\n #\n # Copyright holders\n person(family = \"RStudio, Inc.\", role = \"cph\"),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/rmd/h/jquery-AUTHORS.txt\"),\n person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery UI library; authors listed in inst/rmd/h/jqueryui-AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"),\n comment = \"html5shiv library\"),\n person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"),\n comment = \"Respond.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\n comment = \"highlight.js library\"),\n person(\"Greg\", \"Franko\", role = c(\"ctb\", \"cph\"),\n comment = \"tocify library\"),\n person(\"John\", \"MacFarlane\", role = c(\"ctb\", \"cph\"),\n comment = \"Pandoc templates\"),\n person(family = \"Google, Inc.\", role = c(\"ctb\", \"cph\"),\n comment = \"ioslides library\"),\n person(\"Dave\", \"Raggett\", role = \"ctb\",\n comment = \"slidy library\"),\n person(family = \"W3C\", role = \"cph\",\n comment = \"slidy library\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome\"),\n person(\"Ben\", \"Sperry\", role = \"ctb\",\n comment = \"Ionicons\"),\n person(family = \"Drifty\", role = \"cph\",\n comment = \"Ionicons\"),\n person(\"Aidan\", \"Lister\", role = c(\"ctb\", \"cph\"), \n comment = \"jQuery StickyTabs\"),\n person(\"Benct Philip\", \"Jonsson\", role = c(\"ctb\", \"cph\"), \n comment = \"pagebreak lua filter\"),\n person(\"Albert\", \"Krewinkel\", role = c(\"ctb\", \"cph\"), \n comment = \"pagebreak lua filter\")\n )",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Description": "Convert R Markdown documents into a variety of formats.",
"Depends": "R (>= 3.0)",
"Imports": "tools, utils, knitr (>= 1.22), yaml (>= 2.1.19), htmltools (>=\n0.3.5), evaluate (>= 0.13), base64enc, jsonlite, mime, tinytex\n(>= 0.11), xfun, methods, stringr (>= 1.2.0)",
"Suggests": "shiny (>= 0.11), tufte, testthat, digest, dygraphs, tibble,\nfs, pkgdown, callr (>= 2.0.0)",
"SystemRequirements": "pandoc (>= 1.12.3) - http://pandoc.org",
"URL": "https://github.com/rstudio/rmarkdown",
"BugReports": "https://github.com/rstudio/rmarkdown/issues",
"License": "GPL-3",
"RoxygenNote": "7.0.1",
"Encoding": "UTF-8",
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Packaged": "2019-11-27 00:04:07 UTC; yihui",
"Author": "JJ Allaire [aut],\n Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Jonathan McPherson [aut],\n Javier Luraschi [aut],\n Kevin Ushey [aut],\n Aron Atkins [aut],\n Hadley Wickham [aut],\n Joe Cheng [aut],\n Winston Chang [aut],\n Richard Iannone [aut] (<https://orcid.org/0000-0003-3925-190X>),\n Andrew Dunning [ctb],\n Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>),\n Barret Schloerke [ctb],\n Christophe Dervieux [ctb],\n Frederik Aust [ctb] (<https://orcid.org/0000-0003-4900-788X>),\n Jeff Allen [ctb],\n Malcolm Barrett [ctb],\n Rob Hyndman [ctb],\n Romain Lesur [ctb],\n Roy Storey [ctb],\n Ruben Arslan [ctb],\n RStudio, Inc. [cph],\n jQuery Foundation [cph] (jQuery library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/rmd/h/jquery-AUTHORS.txt),\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/rmd/h/jqueryui-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n Greg Franko [ctb, cph] (tocify library),\n John MacFarlane [ctb, cph] (Pandoc templates),\n Google, Inc. [ctb, cph] (ioslides library),\n Dave Raggett [ctb] (slidy library),\n W3C [cph] (slidy library),\n Dave Gandy [ctb, cph] (Font-Awesome),\n Ben Sperry [ctb] (Ionicons),\n Drifty [cph] (Ionicons),\n Aidan Lister [ctb, cph] (jQuery StickyTabs),\n Benct Philip Jonsson [ctb, cph] (pagebreak lua filter),\n Albert Krewinkel [ctb, cph] (pagebreak lua filter)",
"Repository": "RSPM",
"Date/Publication": "2019-11-27 07:40:03 UTC",
"Built": "R 3.4.3; ; 2019-12-03 13:46:18 UTC; unix"
}
},
"shiny": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "shiny",
"Type": "Package",
"Title": "Web Application Framework for R",
"Version": "1.3.2",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@rstudio.com\"),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"jj@rstudio.com\"),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"yihui@rstudio.com\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"jonathan@rstudio.com\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"),\n comment = \"html5shiv library\"),\n person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"),\n comment = \"Respond.js library\"),\n person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\"),\n person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"),\n comment = \"DataTables library\"),\n person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\n comment = \"highlight.js library\"),\n person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"),\n comment = \"tar implementation from R\")\n )",
"Description": "Makes it incredibly easy to build interactive web\n applications with R. Automatic \"reactive\" binding between inputs and\n outputs and extensive prebuilt widgets make it possible to build\n beautiful, responsive, and powerful applications with minimal effort.",
"License": "GPL-3 | file LICENSE",
"Depends": "R (>= 3.0.2), methods",
"Imports": "utils, grDevices, httpuv (>= 1.5.0), mime (>= 0.3), jsonlite\n(>= 0.9.16), xtable, digest, htmltools (>= 0.3.6), R6 (>= 2.0),\nsourcetools, later (>= 0.7.2), promises (>= 1.0.1), tools,\ncrayon, rlang",
"Suggests": "datasets, Cairo (>= 1.5-5), testthat, knitr (>= 1.6),\nmarkdown, rmarkdown, ggplot2, reactlog (>= 1.0.0), magrittr",
"URL": "http://shiny.rstudio.com",
"BugReports": "https://github.com/rstudio/shiny/issues",
"Collate": "'app.R' 'bookmark-state-local.R' 'stack.R' 'bookmark-state.R'\n'bootstrap-layout.R' 'globals.R' 'conditions.R' 'map.R'\n'utils.R' 'bootstrap.R' 'cache-context.R' 'cache-disk.R'\n'cache-memory.R' 'cache-utils.R' 'diagnose.R' 'fileupload.R'\n'font-awesome.R' 'graph.R' 'reactives.R' 'reactive-domains.R'\n'history.R' 'hooks.R' 'html-deps.R' 'htmltools.R'\n'image-interact-opts.R' 'image-interact.R' 'imageutils.R'\n'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R'\n'input-date.R' 'input-daterange.R' 'input-file.R'\n'input-numeric.R' 'input-password.R' 'input-radiobuttons.R'\n'input-select.R' 'input-slider.R' 'input-submit.R'\n'input-text.R' 'input-textarea.R' 'input-utils.R'\n'insert-tab.R' 'insert-ui.R' 'jqueryui.R' 'middleware-shiny.R'\n'middleware.R' 'modal.R' 'modules.R' 'notifications.R'\n'priorityqueue.R' 'progress.R' 'react.R' 'render-cached-plot.R'\n'render-plot.R' 'render-table.R' 'run-url.R' 'serializers.R'\n'server-input-handlers.R' 'server.R' 'shiny-options.R'\n'shiny.R' 'shinyui.R' 'shinywrappers.R' 'showcase.R'\n'snapshot.R' 'tar.R' 'test-export.R' 'timer.R' 'update-input.R'",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2019-04-19 16:39:03 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n JJ Allaire [aut],\n Yihui Xie [aut],\n Jonathan McPherson [aut],\n RStudio [cph],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/www/shared/jqueryui/AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Dave Gandy [ctb, cph] (Font-Awesome font),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library),\n SpryMedia Limited [ctb, cph] (DataTables library),\n John Fraser [ctb, cph] (showdown.js library),\n John Gruber [ctb, cph] (showdown.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n R Core Team [ctb, cph] (tar implementation from R)",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "RSPM",
"Date/Publication": "2019-04-22 16:00:09 UTC",
"Built": "R 3.4.3; ; 2019-07-20 03:00:57 UTC; unix"
}
},
"sourcetools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "sourcetools",
"Type": "Package",
"Title": "Tools for Reading, Tokenizing and Parsing R Code",
"Version": "0.1.7",
"Author": "Kevin Ushey",
"Maintainer": "Kevin Ushey <kevinushey@gmail.com>",
"Description": "Tools for the reading and tokenization of R code. The\n 'sourcetools' package provides both an R and C++ interface for the tokenization\n of R code, and helpers for interacting with the tokenized representation of R\n code.",
"License": "MIT + file LICENSE",
"LazyData": "TRUE",
"Depends": "R (>= 3.0.2)",
"Suggests": "testthat",
"RoxygenNote": "5.0.1",
"BugReports": "https://github.com/kevinushey/sourcetools/issues",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2018-04-25 03:19:22 UTC; kevin",
"Repository": "RSPM",
"Date/Publication": "2018-04-25 03:38:09 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2019-09-02 04:21:23 UTC; unix"
}
},
"stringi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "stringi",
"Version": "1.4.6",
"Date": "2020-02-17",
"Title": "Character String Processing Facilities",
"Description": "Fast, correct, consistent, portable and convenient character\n string/text processing in every locale and any native encoding. \n Owing to the use of the 'ICU' (International Components for Unicode) \n library, the package provides 'R' users with platform-independent functions\n known to 'Java', 'Perl', 'Python', 'PHP' and 'Ruby' programmers. Available\n features include: pattern searching (e.g., with 'Java'-like regular\n expressions or the 'Unicode' collation algorithm), random string generation,\n case mapping, string transliteration, concatenation,\n Unicode normalization, date-time formatting and parsing and many more.",
"URL": "http://www.gagolewski.com/software/stringi/\nhttp://site.icu-project.org/ http://www.unicode.org/",
"BugReports": "http://github.com/gagolews/stringi/issues",
"SystemRequirements": "ICU4C (>= 55, optional)",
"Type": "Package",
"Depends": "R (>= 2.14)",
"Imports": "tools, utils, stats",
"Biarch": "TRUE",
"License": "file LICENSE",
"Author": "Marek Gagolewski [aut, cre] (<https://orcid.org/0000-0003-0637-6028>),\n Bartek Tartanus [ctb]\n and other contributors (stringi source code);\n IBM, Unicode, Inc. and other contributors (ICU4C source code);\n Unicode, Inc. (Unicode Character Database)",
"Maintainer": "Marek Gagolewski <marek@gagolewski.com>",
"RoxygenNote": "7.0.2",
"NeedsCompilation": "yes",
"Packaged": "2020-02-17 01:46:10 UTC; gagolews",
"License_is_FOSS": "yes",
"Repository": "CRAN",
"Date/Publication": "2020-02-17 18:00:06 UTC",
"Built": "R 3.4.3; x86_64-apple-darwin15.6.0; 2020-03-02 03:46:09 UTC; unix"
}
},
"stringr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "stringr",
"Title": "Simple, Consistent Wrappers for Common String Operations",
"Version": "1.4.0",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"hadley@rstudio.com\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "A consistent, simple and easy to use set of\n wrappers around the fantastic 'stringi' package. All function and\n argument names (and positions) are consistent, all functions deal with\n \"NA\"'s and zero length vectors in the same way, and the output from\n one function is easy to feed into the input of another.",