|
1 | 1 | Package: devtools
|
2 | 2 | Title: Tools to Make Developing R Packages Easier
|
3 | 3 | Version: 2.4.3.9000
|
4 |
| -Authors@R: |
5 |
| - c(person(given = "Hadley", |
6 |
| - family = "Wickham", |
7 |
| - role = "aut"), |
8 |
| - person(given = "Jim", |
9 |
| - family = "Hester", |
10 |
| - role = "aut"), |
11 |
| - person(given = "Winston", |
12 |
| - family = "Chang", |
13 |
| - role = "aut"), |
14 |
| - person(given = "Jennifer", |
15 |
| - family = "Bryan", |
16 |
| - role = c("aut", "cre"), |
17 |
| - |
18 |
| - comment = c(ORCID = "0000-0002-6983-2759")), |
19 |
| - person(given = "RStudio", |
20 |
| - role = c("cph", "fnd"))) |
| 4 | +Authors@R: c( |
| 5 | + person("Hadley", "Wickham", role = "aut"), |
| 6 | + person("Jim", "Hester", role = "aut"), |
| 7 | + person("Winston", "Chang", role = "aut"), |
| 8 | + person("Jennifer", "Bryan", , " [email protected]", role = c("aut", "cre"), |
| 9 | + comment = c(ORCID = "0000-0002-6983-2759")), |
| 10 | + person("RStudio", role = c("cph", "fnd")) |
| 11 | + ) |
21 | 12 | Description: Collection of package development tools.
|
22 | 13 | License: MIT + file LICENSE
|
23 | 14 | URL: https://devtools.r-lib.org/, https://github.com/r-lib/devtools
|
24 | 15 | BugReports: https://github.com/r-lib/devtools/issues
|
25 | 16 | Depends:
|
26 | 17 | R (>= 3.0.2),
|
27 |
| - usethis (>= 2.0.1) |
| 18 | + usethis (>= 2.1.5) |
28 | 19 | Imports:
|
29 |
| - callr (>= 3.6.0), |
30 |
| - cli (>= 3.0.0), |
31 |
| - desc (>= 1.3.0), |
32 |
| - ellipsis (>= 0.3.1), |
33 |
| - fs (>= 1.5.0), |
34 |
| - httr (>= 1.4.2), |
35 |
| - lifecycle (>= 1.0.0), |
36 |
| - memoise (>= 2.0.0), |
37 |
| - pkgbuild (>= 1.2.0), |
38 |
| - pkgload (>= 1.2.1), |
39 |
| - rcmdcheck (>= 1.3.3), |
40 |
| - remotes (>= 2.3.0), |
41 |
| - rlang (>= 0.4.10), |
42 |
| - roxygen2 (>= 7.1.1), |
43 |
| - rstudioapi (>= 0.13), |
44 |
| - rversions (>= 2.0.2), |
45 |
| - sessioninfo (>= 1.1.1), |
| 20 | + cli (>= 3.2.0), |
| 21 | + desc (>= 1.4.0), |
| 22 | + DT (>= 0.21), |
| 23 | + ellipsis (>= 0.3.2), |
| 24 | + fs (>= 1.5.2), |
| 25 | + memoise (>= 2.0.1), |
| 26 | + miniUI (>= 0.1.1.1), |
| 27 | + pkgbuild (>= 1.3.1), |
| 28 | + pkgdown (>= 2.0.2), |
| 29 | + pkgload (>= 1.2.4), |
| 30 | + profvis (>= 0.3.7), |
| 31 | + rcmdcheck (>= 1.4.0), |
| 32 | + remotes (>= 2.4.2), |
| 33 | + rlang (>= 1.0.1), |
| 34 | + roxygen2 (>= 7.1.2), |
| 35 | + rversions (>= 2.1.1), |
| 36 | + sessioninfo (>= 1.2.2), |
46 | 37 | stats,
|
47 |
| - testthat (>= 3.0.2), |
| 38 | + testthat (>= 3.1.2), |
48 | 39 | tools,
|
| 40 | + urlchecker (>= 1.0.1), |
49 | 41 | utils,
|
50 |
| - withr (>= 2.4.1) |
| 42 | + withr (>= 2.4.3) |
51 | 43 | Suggests:
|
52 |
| - BiocManager (>= 1.30.12), |
| 44 | + BiocManager (>= 1.30.16), |
| 45 | + callr (>= 3.7.0), |
53 | 46 | covr (>= 3.5.1),
|
54 |
| - curl (>= 4.3), |
55 |
| - digest (>= 0.6.27), |
56 |
| - DT (>= 0.17), |
57 |
| - foghorn (>= 1.3.2), |
58 |
| - gh (>= 1.2.1), |
59 |
| - gmailr (>= 1.0.0), |
60 |
| - knitr (>= 1.31), |
| 47 | + curl (>= 4.3.2), |
| 48 | + digest (>= 0.6.29), |
| 49 | + foghorn (>= 1.4.2), |
| 50 | + gh (>= 1.3.0), |
| 51 | + gmailr (>= 1.0.1), |
| 52 | + httr (>= 1.4.2), |
| 53 | + knitr (>= 1.37), |
| 54 | + lifecycle (>= 1.0.1), |
61 | 55 | lintr (>= 2.0.1),
|
62 | 56 | MASS,
|
63 |
| - mockery (>= 0.4.2), |
| 57 | + mockery (>= 0.4.3), |
64 | 58 | pingr (>= 2.0.1),
|
65 |
| - pkgdown (>= 2.0.0), |
66 | 59 | rhub (>= 1.1.1),
|
67 |
| - rmarkdown (>= 2.7), |
| 60 | + rmarkdown (>= 2.11), |
| 61 | + rstudioapi (>= 0.13), |
68 | 62 | spelling (>= 2.2)
|
69 | 63 | VignetteBuilder:
|
70 | 64 | knitr
|
| 65 | +Config/Needs/website: tidyverse/tidytemplate |
71 | 66 | Encoding: UTF-8
|
72 | 67 | Language: en-US
|
73 | 68 | Roxygen: list(markdown = TRUE)
|
74 | 69 | RoxygenNote: 7.1.2
|
75 |
| -Config/Needs/website: tidyverse/tidytemplate |
0 commit comments