-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
873 lines (873 loc) · 69.6 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
{
"version": 1,
"locale": "en_US",
"platform": "4.1.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.1.1; ; 2021-09-10 15:50:03 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:14 UTC; windows"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:16 UTC; windows"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.3.1",
"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.2",
"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",
"Config/Needs/website": "rsconnect, renv, r-lib/pkgdown, apreshill/quillt",
"NeedsCompilation": "no",
"Packaged": "2021-10-06 14:12:58 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": "CRAN",
"Date/Publication": "2021-10-06 15:10:05 UTC",
"Built": "R 4.1.2; ; 2021-12-23 03:03:11 UTC; windows"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "cachem",
"Version": "1.0.6",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": "rlang, fastmap",
"Suggests": "testthat",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-08-19 21:07:46 UTC; barret",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 21:30:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 18:22:24 UTC; windows"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.7",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "http://github.com/jeroen/commonmark (devel)\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "http://github.com/jeroen/commonmark/issues",
"Description": "The CommonMark specification defines a rationalized version of markdown\n syntax. This package uses the 'cmark' reference implementation for converting\n markdown text into various formats including html, latex and groff man. In\n addition it exposes the markdown parse tree in xml format. Also includes opt-in\n support for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2018-12-01 11:57:14 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre],\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2018-12-01 12:30:03 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:18 UTC; windows"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.4.2",
"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",
"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'\n'aac-num-ansi-colors.R' 'ansi-256.r' 'ansi-palette.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.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-10-26 12:16:51 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-10-29 23:20:02 UTC",
"Built": "R 4.1.2; ; 2021-12-07 05:54:09 UTC; windows"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.29",
"Date": "2021-11-30",
"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": "https://github.com/eddelbuettel/digest,\nhttp://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, simplermarkdown",
"VignetteBuilder": "simplermarkdown",
"NeedsCompilation": "yes",
"Packaged": "2021-11-30 23:41:39 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2021-12-01 07:40:02 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2021-12-07 05:53:37 UTC; windows"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.1.1; x86_64-w64-mingw32; 2021-09-10 18:22:15 UTC; windows"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:17 UTC; windows"
}
},
"fontawesome": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "fontawesome",
"Version": "0.2.2",
"Title": "Easily Work with 'Font Awesome' Icons",
"Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown'\n documents and 'Shiny' apps. These icons can be inserted into HTML content\n through inline 'SVG' tags or 'i' tags. There is also a utility function for\n exporting 'Font Awesome' icons as 'PNG' images for those situations where\n raster graphics are needed.",
"Authors@R": "c(\n person(\"Richard\", \"Iannone\", , \"[email protected]\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"[email protected]\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"[email protected]\", role = \"ctb\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/fontawesome",
"BugReports": "https://github.com/rstudio/fontawesome/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"RoxygenNote": "7.1.1",
"Depends": "R (>= 3.3.0)",
"Imports": "rlang (>= 0.4.10), htmltools (>= 0.5.1.1)",
"Suggests": "covr, knitr, testthat, rsvg",
"NeedsCompilation": "no",
"Packaged": "2021-07-02 18:33:03 UTC; rich",
"Author": "Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>),\n Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>),\n Winston Chang [ctb],\n Dave Gandy [ctb, cph] (Font-Awesome font),\n RStudio [cph, fnd]",
"Maintainer": "Richard Iannone <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-07-02 18:50:02 UTC",
"Built": "R 4.1.1; ; 2021-11-01 21:41:34 UTC; windows"
}
},
"fs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:27 UTC; windows"
}
},
"glue": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "glue",
"Title": "Interpreted String Literals",
"Version": "1.5.1",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Jennifer\", \"Bryan\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "An implementation of interpreted string literals, inspired by\n Python's Literal String Interpolation\n <https://www.python.org/dev/peps/pep-0498/> and Docstrings\n <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted\n String Literals\n <https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1>.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/tidyverse/glue, https://glue.tidyverse.org/",
"BugReports": "https://github.com/tidyverse/glue/issues",
"Depends": "R (>= 3.2)",
"Imports": "methods",
"Suggests": "covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,\nmicrobenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,\ntestthat, vctrs (>= 0.3.0), waldo, withr",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "hadley/emo, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Packaged": "2021-11-30 00:39:30 UTC; jhester",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>),\n RStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-11-30 09:50:07 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2021-12-07 05:53:37 UTC; windows"
}
},
"htmltools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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": "CRAN",
"Date/Publication": "2021-08-25 13:50:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 18:22:24 UTC; windows"
}
},
"httpuv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.)",
"License": "GPL (>= 2) | file LICENSE",
"Depends": "R (>= 2.15.1)",
"Imports": "Rcpp (>= 1.0.7), utils, R6, promises, later (>= 0.8.0)",
"LinkingTo": "Rcpp, later",
"URL": "https://github.com/rstudio/httpuv",
"SystemRequirements": "GNU make, C++11",
"RoxygenNote": "7.1.1",
"Suggests": "testthat, callr, curl, websocket",
"Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R'\n'static_paths.R' 'utils.R'",
"NeedsCompilation": "yes",
"Packaged": "2021-09-09 19:51:31 UTC; winston",
"Author": "Joe Cheng [aut],\n Winston Chang [aut, cre],\n RStudio, PBC [cph],\n Hector Corrada Bravo [ctb],\n Jeroen Ooms [ctb],\n Andrzej Krzemienski [cph] (optional.hpp)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-09-09 20:30:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 22:36:27 UTC; windows"
}
},
"jquerylib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "jquerylib",
"Title": "Obtain 'jQuery' as an HTML Dependency Object",
"Version": "0.1.4",
"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 = \"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/lib/jquery-AUTHORS.txt\")\n )",
"Description": "Obtain any major version of 'jQuery' (<https://code.jquery.com/>) and use it in any webpage generated by 'htmltools' (e.g. 'shiny', 'htmlwidgets', and 'rmarkdown').\n Most R users don't need to use this package directly, but other R packages (e.g. 'shiny', 'rmarkdown', etc.) depend on this package to avoid bundling redundant copies of 'jQuery'.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"Config/testthat/edition": "3",
"RoxygenNote": "7.0.2",
"Imports": "htmltools",
"Suggests": "testthat",
"NeedsCompilation": "no",
"Packaged": "2021-04-26 16:40:21 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [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/lib/jquery-AUTHORS.txt)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-26 17:10:02 UTC",
"Built": "R 4.1.1; ; 2021-09-10 20:38:53 UTC; windows"
}
},
"jsonlite": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "jsonlite",
"Version": "1.7.2",
"Title": "A Simple and Robust JSON Parser and Generator for R",
"License": "MIT + file LICENSE",
"Depends": "methods",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Duncan\", \"Temple Lang\", role = \"ctb\"),\n person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))",
"URL": "https://arxiv.org/abs/1403.2805 (paper)",
"BugReports": "https://github.com/jeroen/jsonlite/issues",
"Maintainer": "Jeroen Ooms <[email protected]>",
"VignetteBuilder": "knitr, R.rsp",
"Description": "A reasonably fast JSON parser and generator, optimized for statistical \n data and the web. Offers simple, flexible tools for working with JSON in R, and\n is particularly powerful for building pipelines and interacting with a web API. \n The implementation is based on the mapping described in the vignette (Ooms, 2014).\n In addition to converting JSON data from/to R objects, 'jsonlite' contains \n functions to stream, validate, and prettify JSON data. The unit tests included \n with the package verify that all edge cases are encoded and decoded consistently \n for use with dynamic data in systems and applications.",
"Suggests": "httr, curl, plyr, testthat, knitr, rmarkdown, R.rsp, sf",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2020-12-09 13:54:18 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Duncan Temple Lang [ctb],\n Lloyd Hilaiel [cph] (author of bundled libyajl)",
"Repository": "CRAN",
"Date/Publication": "2020-12-09 17:40:03 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:15 UTC; windows"
}
},
"later": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "later",
"Type": "Package",
"Title": "Utilities for Scheduling Functions to Execute Later with Event\nLoops",
"Version": "1.3.0",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\"),\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": "MIT + file LICENSE",
"Imports": "Rcpp (>= 0.12.9), rlang",
"LinkingTo": "Rcpp",
"RoxygenNote": "7.1.1",
"SystemRequirements": "C++11",
"Suggests": "knitr, rmarkdown, testthat (>= 2.1.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2021-08-18 14:03:28 UTC; barret",
"Author": "Winston Chang [aut, cre],\n Joe Cheng [aut],\n RStudio [cph],\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": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-18 16:30:06 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 18:22:23 UTC; windows"
}
},
"lifecycle": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "lifecycle",
"Title": "Manage the Life Cycle of your Package Functions",
"Version": "1.0.1",
"Authors@R": "\n c(person(given = \"Lionel\",\n family = \"Henry\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "Manage the life cycle of your exported functions\n with shared conventions, documentation badges, and user-friendly\n deprecation warnings.",
"License": "MIT + file LICENSE",
"URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle",
"BugReports": "https://github.com/r-lib/lifecycle/issues",
"Depends": "R (>= 3.3)",
"Imports": "glue, rlang (>= 0.4.10)",
"Suggests": "covr, crayon, lintr, tidyverse, knitr, rmarkdown, testthat\n(>= 3.0.1), tools, tibble, vctrs",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "no",
"Packaged": "2021-09-24 14:46:50 UTC; lionel",
"Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>),\n RStudio [cph]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-09-24 15:30:02 UTC",
"Built": "R 4.1.2; ; 2021-12-07 08:23:22 UTC; windows"
}
},
"magrittr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "magrittr",
"Title": "A Forward-Pipe Operator for R",
"Version": "2.0.1",
"Authors@R": "\n c(person(given = \"Stefan Milton\",\n family = \"Bache\",\n role = c(\"aut\", \"cph\"),\n email = \"[email protected]\",\n comment = \"Original author and creator of magrittr\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Lionel\",\n family = \"Henry\",\n role = \"cre\",\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Provides a mechanism for chaining commands with a\n new forward-pipe operator, %>%. This operator will forward a value, or\n the result of an expression, into the next function call/expression.\n There is flexible support for the type of right-hand side expressions.\n For more information, see package vignette. To quote Rene Magritte,\n \"Ceci n'est pas un pipe.\"",
"License": "MIT + file LICENSE",
"URL": "https://magrittr.tidyverse.org,\nhttps://github.com/tidyverse/magrittr",
"BugReports": "https://github.com/tidyverse/magrittr/issues",
"Suggests": "covr, knitr, rlang, rmarkdown, testthat",
"VignetteBuilder": "knitr",
"ByteCompile": "Yes",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2020-11-17 12:44:34 UTC; lionel",
"Author": "Stefan Milton Bache [aut, cph] (Original author and creator of\n magrittr),\n Hadley Wickham [aut],\n Lionel Henry [cre],\n RStudio [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-11-17 16:20:06 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:03 UTC; windows"
}
},
"mime": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "mime",
"Type": "Package",
"Title": "Map Filenames to MIME Types",
"Version": "0.12",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", 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",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2021-09-28 02:06:04 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-09-28 05:00:05 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-29 11:32:06 UTC; windows"
}
},
"promises": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "promises",
"Type": "Package",
"Title": "Abstractions for Promise-Based Asynchronous Programming",
"Version": "1.2.0.1",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", email = \"[email protected]\", 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 (>= 1.21.0), fastmap (>= 1.1.0), purrr,\nknitr, rmarkdown, vembedr, spelling",
"LinkingTo": "later, Rcpp",
"RoxygenNote": "7.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",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2021-02-11 18:18:47 UTC; barret",
"Author": "Joe Cheng [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Joe Cheng <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-02-11 19:00:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 20:38:43 UTC; windows"
}
},
"rappdirs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "rappdirs",
"Title": "Application Directories: Determine Where to Save Data, Caches,\nand Logs",
"Version": "0.3.3",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"trl\", \"cre\", \"cph\"),\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"),\n person(given = \"Sridhar\",\n family = \"Ratnakumar\",\n role = \"aut\"),\n person(given = \"Trent\",\n family = \"Mick\",\n role = \"aut\"),\n person(given = \"ActiveState\",\n role = \"cph\",\n comment = \"R/appdir.r, R/cache.r, R/data.r, R/log.r translated from appdirs\"),\n person(given = \"Eddy\",\n family = \"Petrisor\",\n role = \"ctb\"),\n person(given = \"Trevor\",\n family = \"Davis\",\n role = c(\"trl\", \"aut\")),\n person(given = \"Gabor\",\n family = \"Csardi\",\n role = \"ctb\"),\n person(given = \"Gregory\",\n family = \"Jefferis\",\n role = \"ctb\"))",
"Description": "An easy way to determine which directories on the\n users computer you should use to save data, caches and logs. A port of\n Python's 'Appdirs' (<https://github.com/ActiveState/appdirs>) to\n R.",
"License": "MIT + file LICENSE",
"URL": "https://rappdirs.r-lib.org, https://github.com/r-lib/rappdirs",
"BugReports": "https://github.com/r-lib/rappdirs/issues",
"Depends": "R (>= 3.2)",
"Suggests": "roxygen2, testthat (>= 3.0.0), covr, withr",
"Copyright": "Original python appdirs module copyright (c) 2010\nActiveState Software Inc. R port copyright Hadley Wickham,\nRStudio. See file LICENSE for details.",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Packaged": "2021-01-28 22:29:57 UTC; hadley",
"Author": "Hadley Wickham [trl, cre, cph],\n RStudio [cph],\n Sridhar Ratnakumar [aut],\n Trent Mick [aut],\n ActiveState [cph] (R/appdir.r, R/cache.r, R/data.r, R/log.r translated\n from appdirs),\n Eddy Petrisor [ctb],\n Trevor Davis [trl, aut],\n Gabor Csardi [ctb],\n Gregory Jefferis [ctb]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-01-31 05:40:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:28 UTC; windows"
}
},
"rlang": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "rlang",
"Version": "0.4.11",
"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\", ,\"[email protected]\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", ,\"[email protected]\", \"aut\"),\n person(given = \"mikefc\",\n email = \"[email protected]\", \n role = \"cph\", \n comment = \"Hash implementation based on Mike's xxhashlite\"),\n person(given = \"Yann\",\n family = \"Collet\",\n role = \"cph\", \n comment = \"Author of the embedded xxHash library\"),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "MIT + file LICENSE",
"ByteCompile": "true",
"Biarch": "true",
"Depends": "R (>= 3.3.0)",
"Imports": "utils",
"Suggests": "cli, covr, crayon, glue, magrittr, methods, pak, pillar,\nrmarkdown, testthat (>= 3.0.0), vctrs (>= 0.2.3), withr",
"Enhances": "winch",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"URL": "https://rlang.r-lib.org, https://github.com/r-lib/rlang",
"BugReports": "https://github.com/r-lib/rlang/issues",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Packaged": "2021-04-29 14:15:00 UTC; lionel",
"Author": "Lionel Henry [aut, cre],\n Hadley Wickham [aut],\n mikefc [cph] (Hash implementation based on Mike's xxhashlite),\n Yann Collet [cph] (Author of the embedded xxHash library),\n RStudio [cph]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-30 23:20:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-10 15:50:03 UTC; windows"
}
},
"sass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "sass",
"Version": "0.4.0",
"Title": "Syntactically Awesome Style Sheets ('Sass')",
"Description": "An 'SCSS' compiler, powered by the 'LibSass' library. With this,\n R developers can use variables, inheritance, and functions to generate\n dynamic style sheets. The package uses the 'Sass CSS' extension language,\n which is stable, powerful, and CSS compatible.",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", , \"[email protected]\", \"aut\"),\n person(\"Timothy\", \"Mastny\", , \"[email protected]\", \"aut\"),\n person(\"Richard\", \"Iannone\", , \"[email protected]\", \"aut\",\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Barret\", \"Schloerke\", , \"[email protected]\", \"aut\",\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Carson\", \"Sievert\", , \"[email protected]\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Christophe\", \"Dervieux\", , \"[email protected]\", c(\"ctb\"),\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(family = \"Sass Open Source Foundation\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Greter\", \"Marcel\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Mifsud\", \"Michael\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Hampton\", \"Catlin\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Natalie\", \"Weizenbaum\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Chris\", \"Eppstein\", role = c(\"ctb\", \"cph\"),\n comment = \"LibSass library\"),\n person(\"Adams\", \"Joseph\", role = c(\"ctb\", \"cph\"),\n comment = \"json.cpp\"),\n person(\"Trifunovic\", \"Nemanja\", role = c(\"ctb\", \"cph\"),\n comment = \"utf8.h\")\n )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/sass",
"BugReports": "https://github.com/rstudio/sass/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"SystemRequirements": "GNU make",
"Imports": "fs, rlang (>= 0.4.10), htmltools (>= 0.5.1), R6, rappdirs",
"Suggests": "testthat, knitr, rmarkdown, withr, shiny, curl",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Packaged": "2021-05-11 13:52:17 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Timothy Mastny [aut],\n Richard Iannone [aut] (<https://orcid.org/0000-0003-3925-190X>),\n Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>),\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>),\n RStudio [cph, fnd],\n Sass Open Source Foundation [ctb, cph] (LibSass library),\n Greter Marcel [ctb, cph] (LibSass library),\n Mifsud Michael [ctb, cph] (LibSass library),\n Hampton Catlin [ctb, cph] (LibSass library),\n Natalie Weizenbaum [ctb, cph] (LibSass library),\n Chris Eppstein [ctb, cph] (LibSass library),\n Adams Joseph [ctb, cph] (json.cpp),\n Trifunovic Nemanja [ctb, cph] (utf8.h)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-12 06:00:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-11-01 21:41:34 UTC; windows"
}
},
"shiny": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "shiny",
"Type": "Package",
"Title": "Web Application Framework for R",
"Version": "1.7.1",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"[email protected]\"),\n person(\"Carson\", \"Sievert\", role = \"aut\", 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(\"Yihui\", \"Xie\", role = \"aut\", email = \"[email protected]\"),\n person(\"Jeff\", \"Allen\", role = \"aut\", email = \"[email protected]\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"[email protected]\"),\n person(\"Alan\", \"Dipert\", role = \"aut\"),\n person(\"Barbara\", \"Borges\", role = \"aut\"),\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(\"Prem Nawaz\", \"Khan\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Victor\", \"Tsaran\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Dennis\", \"Lembree\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Srinivasu\", \"Chakravarthula\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(\"Cathy\", \"O'Connor\", role = \"ctb\",\n comment = \"Bootstrap accessibility plugin\"),\n person(family = \"PayPal, Inc\", role = \"cph\",\n comment = \"Bootstrap accessibility plugin\"),\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(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Salmen\", \"Bejaoui\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize-plugin-a11y 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.2), mime (>= 0.3), jsonlite\n(>= 0.9.16), xtable, fontawesome (>= 0.2.1), htmltools (>=\n0.5.2), R6 (>= 2.0), sourcetools, later (>= 1.0.0), promises\n(>= 1.1.0), tools, crayon, rlang (>= 0.4.10), fastmap (>=\n1.1.0), withr, commonmark (>= 1.7), glue (>= 1.3.2), bslib (>=\n0.3.0), cachem, ellipsis, lifecycle (>= 0.2.0)",
"Suggests": "datasets, Cairo (>= 1.5-5), testthat (>= 3.0.0), knitr (>=\n1.6), markdown, rmarkdown, ggplot2, reactlog (>= 1.0.0),\nmagrittr, shinytest (>= 1.4.0.9003), yaml, future, dygraphs,\nragg, showtext, sass",
"URL": "https://shiny.rstudio.com/",
"BugReports": "https://github.com/rstudio/shiny/issues",
"Collate": "'globals.R' 'app-state.R' 'app_template.R' 'bind-cache.R'\n'bind-event.R' 'bookmark-state-local.R' 'bookmark-state.R'\n'bootstrap-deprecated.R' 'bootstrap-layout.R' 'conditions.R'\n'map.R' 'utils.R' 'bootstrap.R' 'cache-utils.R' 'deprecated.R'\n'devmode.R' 'diagnose.R' 'fileupload.R' 'graph.R' 'reactives.R'\n'reactive-domains.R' 'history.R' 'hooks.R' 'html-deps.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' 'knitr.R'\n'middleware-shiny.R' 'middleware.R' 'timer.R' 'shiny.R'\n'mock-session.R' 'modal.R' 'modules.R' 'notifications.R'\n'priorityqueue.R' 'progress.R' 'react.R' 'reexports.R'\n'render-cached-plot.R' 'render-plot.R' 'render-table.R'\n'run-url.R' 'runapp.R' 'serializers.R'\n'server-input-handlers.R' 'server-resource-paths.R' 'server.R'\n'shiny-options.R' 'shiny-package.R' 'shinyapp.R' 'shinyui.R'\n'shinywrappers.R' 'showcase.R' 'snapshot.R' 'tar.R'\n'test-export.R' 'test-server.R' 'test.R' 'update-input.R'\n'utils-lang.R' 'version_bs_date_picker.R'\n'version_ion_range_slider.R' 'version_jquery.R'\n'version_selectize.R' 'version_strftime.R' 'viewer.R'",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"RdMacros": "lifecycle",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2021-10-01 21:41:01 UTC; winston",
"Author": "Winston Chang [aut, cre] (<https://orcid.org/0000-0002-1576-2126>),\n Joe Cheng [aut],\n JJ Allaire [aut],\n Carson Sievert [aut] (<https://orcid.org/0000-0002-4958-2844>),\n Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>),\n Yihui Xie [aut],\n Jeff Allen [aut],\n Jonathan McPherson [aut],\n Alan Dipert [aut],\n Barbara Borges [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 Prem Nawaz Khan [ctb] (Bootstrap accessibility plugin),\n Victor Tsaran [ctb] (Bootstrap accessibility plugin),\n Dennis Lembree [ctb] (Bootstrap accessibility plugin),\n Srinivasu Chakravarthula [ctb] (Bootstrap accessibility plugin),\n Cathy O'Connor [ctb] (Bootstrap accessibility plugin),\n PayPal, Inc [cph] (Bootstrap accessibility plugin),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Salmen Bejaoui [ctb, cph] (selectize-plugin-a11y 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-10-02 04:30:02 UTC",
"Built": "R 4.1.2; ; 2021-12-25 22:34:26 UTC; windows"
}
},
"shinydashboard": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "shinydashboard",
"Title": "Create Dashboards with 'Shiny'",
"Version": "0.7.2",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(\"Barbara\", \"Borges Ribeiro\", role = \"aut\", email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"Almasaeed Studio\", role = c(\"ctb\", \"cph\"), comment = \"AdminLTE theme for Bootstrap\"),\n person(family = \"Adobe Systems Incorporated\", role = c(\"ctb\", \"cph\"), comment = \"Source Sans Pro font\")\n )",
"Description": "Create dashboards with 'Shiny'. This package provides\n a theme on top of 'Shiny', making it easy to create attractive dashboards.",
"URL": "http://rstudio.github.io/shinydashboard/",
"Depends": "R (>= 3.0)",
"License": "GPL (>= 2) | file LICENSE",
"Imports": "utils, shiny (>= 1.0.0), htmltools (>= 0.2.6), promises",
"BugReports": "https://github.com/rstudio/shinydashboard",
"RoxygenNote": "6.0.1.9000",
"NeedsCompilation": "no",
"Packaged": "2021-09-29 17:40:23 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Barbara Borges Ribeiro [aut],\n RStudio [cph],\n Almasaeed Studio [ctb, cph] (AdminLTE theme for Bootstrap),\n Adobe Systems Incorporated [ctb, cph] (Source Sans Pro font)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-09-30 12:10:06 UTC",
"Built": "R 4.1.2; ; 2021-12-25 23:41:43 UTC; windows"
}
},
"shinyjs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "shinyjs",
"Title": "Easily Improve the User Experience of Your Shiny Apps in Seconds",
"Version": "2.1.0",
"Authors@R": "person(\"Dean\", \"Attali\", \n email = \"[email protected]\",\n role = c(\"aut\", \"cre\"),\n comment= c(ORCID=\"0000-0002-5645-3493\"))",
"Description": "Perform common useful JavaScript operations in Shiny apps that will\n greatly improve your apps without having to know any JavaScript. Examples\n include: hiding an element, disabling an input, resetting an input back to\n its original value, delaying code execution by a few seconds, and many more\n useful functions for both the end user and the developer. 'shinyjs' can also\n be used to easily call your own custom JavaScript functions from R.",
"URL": "https://deanattali.com/shinyjs/",
"BugReports": "https://github.com/daattali/shinyjs/issues",
"Depends": "R (>= 3.1.0)",
"Imports": "digest (>= 0.6.8), jsonlite, shiny (>= 1.0.0)",
"Suggests": "htmltools (>= 0.2.9), knitr (>= 1.7), rmarkdown, shinyAce,\nshinydisconnect, testthat (>= 0.9.1)",
"License": "MIT + file LICENSE",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-12-21 11:32:22 UTC; Dean-X1C",
"Author": "Dean Attali [aut, cre] (<https://orcid.org/0000-0002-5645-3493>)",
"Maintainer": "Dean Attali <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-12-23 10:10:02 UTC",
"Built": "R 4.1.2; ; 2021-12-25 06:41:03 UTC; windows"
}
},
"sourcetools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "sourcetools",
"Type": "Package",
"Title": "Tools for Reading, Tokenizing and Parsing R Code",
"Version": "0.1.7",
"Author": "Kevin Ushey",
"Maintainer": "Kevin Ushey <[email protected]>",
"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": "CRAN",
"Date/Publication": "2018-04-25 03:38:09 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-11-01 18:28:54 UTC; windows"
}
},
"withr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "withr",
"Title": "Run Code 'With' Temporarily Modified Global State",
"Version": "2.4.3",
"Authors@R": "\n c(person(given = \"Jim\",\n family = \"Hester\",\n role = \"aut\"),\n person(given = \"Lionel\",\n family = \"Henry\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Kevin\",\n family = \"Ushey\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Winston\",\n family = \"Chang\",\n role = \"aut\"),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\"),\n person(given = \"Richard\",\n family = \"Cotton\",\n role = \"ctb\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "A set of functions to run code 'with' safely and\n temporarily modified global state. Many of these functions were\n originally a part of the 'devtools' package, this provides a simple\n package with limited dependencies to provide access to these\n functions.",
"License": "MIT + file LICENSE",
"URL": "https://withr.r-lib.org, https://github.com/r-lib/withr#readme",
"BugReports": "https://github.com/r-lib/withr/issues",
"Depends": "R (>= 3.2.0)",
"Imports": "graphics, grDevices, stats",
"Suggests": "callr, covr, DBI, knitr, lattice, methods, rmarkdown,\nRSQLite, testthat (>= 3.0.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Collate": "'local_.R' 'with_.R' 'collate.R' 'compat-defer.R'\n'connection.R' 'db.R' 'defer.R' 'wrap.R' 'devices.R' 'dir.R'\n'env.R' 'file.R' 'language.R' 'libpaths.R' 'locale.R'\n'makevars.R' 'namespace.R' 'options.R' 'par.R' 'path.R' 'rng.R'\n'seed.R' 'sink.R' 'tempfile.R' 'timezone.R' 'torture.R'\n'utils.R' 'with.R'",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2021-11-29 19:59:17 UTC; jhester",
"Author": "Jim Hester [aut],\n Lionel Henry [aut, cre],\n Kirill Müller [aut],\n Kevin Ushey [aut],\n Hadley Wickham [aut],\n Winston Chang [aut],\n Jennifer Bryan [ctb],\n Richard Cotton [ctb],\n RStudio [cph]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-11-30 14:20:02 UTC",
"Built": "R 4.1.2; ; 2021-12-07 05:54:29 UTC; windows"
}
},
"xtable": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "xtable",
"Version": "1.8-4",
"Date": "2019-04-08",
"Title": "Export Tables to LaTeX or HTML",
"Authors@R": "c(person(\"David B.\", \"Dahl\", role=\"aut\"),\n person(\"David\", \"Scott\", role=c(\"aut\",\"cre\"),\n email=\"[email protected]\"),\n person(\"Charles\", \"Roosen\", role=\"aut\"),\n person(\"Arni\", \"Magnusson\", role=\"aut\"),\n person(\"Jonathan\", \"Swinton\", role=\"aut\"),\n person(\"Ajay\", \"Shah\", role=\"ctb\"),\n person(\"Arne\", \"Henningsen\", role=\"ctb\"),\n person(\"Benno\", \"Puetz\", role=\"ctb\"),\n person(\"Bernhard\", \"Pfaff\", role=\"ctb\"),\n person(\"Claudio\", \"Agostinelli\", role=\"ctb\"),\n person(\"Claudius\", \"Loehnert\", role=\"ctb\"),\n person(\"David\", \"Mitchell\", role=\"ctb\"),\n person(\"David\", \"Whiting\", role=\"ctb\"),\n person(\"Fernando da\", \"Rosa\", role=\"ctb\"),\n person(\"Guido\", \"Gay\", role=\"ctb\"),\n person(\"Guido\", \"Schulz\", role=\"ctb\"),\n person(\"Ian\", \"Fellows\", role=\"ctb\"),\n person(\"Jeff\", \"Laake\", role=\"ctb\"),\n person(\"John\", \"Walker\", role=\"ctb\"),\n person(\"Jun\", \"Yan\", role=\"ctb\"),\n person(\"Liviu\", \"Andronic\", role=\"ctb\"),\n person(\"Markus\", \"Loecher\", role=\"ctb\"),\n person(\"Martin\", \"Gubri\", role=\"ctb\"),\n person(\"Matthieu\", \"Stigler\", role=\"ctb\"),\n person(\"Robert\", \"Castelo\", role=\"ctb\"),\n person(\"Seth\", \"Falcon\", role=\"ctb\"),\n person(\"Stefan\", \"Edwards\", role=\"ctb\"),\n person(\"Sven\", \"Garbade\", role=\"ctb\"),\n person(\"Uwe\", \"Ligges\", role=\"ctb\"))",
"Maintainer": "David Scott <[email protected]>",
"Imports": "stats, utils",
"Suggests": "knitr, plm, zoo, survival",
"VignetteBuilder": "knitr",
"Description": "Coerce data to LaTeX and HTML tables.",
"URL": "http://xtable.r-forge.r-project.org/",
"Depends": "R (>= 2.10.0)",
"License": "GPL (>= 2)",
"Repository": "CRAN",
"NeedsCompilation": "no",
"Packaged": "2019-04-21 10:56:51 UTC; dsco036",
"Author": "David B. Dahl [aut],\n David Scott [aut, cre],\n Charles Roosen [aut],\n Arni Magnusson [aut],\n Jonathan Swinton [aut],\n Ajay Shah [ctb],\n Arne Henningsen [ctb],\n Benno Puetz [ctb],\n Bernhard Pfaff [ctb],\n Claudio Agostinelli [ctb],\n Claudius Loehnert [ctb],\n David Mitchell [ctb],\n David Whiting [ctb],\n Fernando da Rosa [ctb],\n Guido Gay [ctb],\n Guido Schulz [ctb],\n Ian Fellows [ctb],\n Jeff Laake [ctb],\n John Walker [ctb],\n Jun Yan [ctb],\n Liviu Andronic [ctb],\n Markus Loecher [ctb],\n Martin Gubri [ctb],\n Matthieu Stigler [ctb],\n Robert Castelo [ctb],\n Seth Falcon [ctb],\n Stefan Edwards [ctb],\n Sven Garbade [ctb],\n Uwe Ligges [ctb]",
"Date/Publication": "2019-04-21 12:20:03 UTC",
"Built": "R 4.1.1; ; 2021-11-01 18:28:53 UTC; windows"
}
}
},
"files": {
"LICENSE": {
"checksum": "e62637ea8a114355b985fd86c9ffbd6e"
},
"README.md": {
"checksum": "af4297172dc26458144b8b88907327b5"
},
"selex_fxns.R": {
"checksum": "31b46e987e3e52e7e30b65784ec52112"
},
"server.R": {
"checksum": "d09b2c8911ce06ac11f392dffeeb7277"
},
"ui.R": {
"checksum": "85b44def3b386e4df3ad092f13037e85"
},
"www/GitHub-Mark-64px.png": {
"checksum": "438c17272c5f0e9f4a6da34d3e4bc5bd"
},
"www/NOAA-Logo-Without-Ring.png": {
"checksum": "0084e3006274a61ab121cdc66bd5cf6e"
}
},
"users": null
}