Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

usethis::use_tidy_description() #62

Merged
merged 3 commits into from Jun 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
59 changes: 29 additions & 30 deletions DESCRIPTION
Expand Up @@ -2,43 +2,42 @@ Package: tibblify
Title: Rectangle Nested Lists
Version: 0.1.0.9000
Authors@R:
person(given = "Maximilian",
family = "Girlich",
role = c("aut", "cre"),
email = "maximilian.girlich@outlook.com")
Description: A tool to rectangle a nested list, that is to convert it into a
tibble. This is done automatically or according to a given specification.
A common use case is for nested lists coming from parsing JSON files or
the JSON response of REST APIs. It is supported by the 'vctrs' package
and therefore offers a wide support of vector types.
person("Maximilian", "Girlich", , "maximilian.girlich@outlook.com", role = c("aut", "cre"))
Description: A tool to rectangle a nested list, that is to convert it into
a tibble. This is done automatically or according to a given
specification. A common use case is for nested lists coming from
parsing JSON files or the JSON response of REST APIs. It is supported
by the 'vctrs' package and therefore offers a wide support of vector
types.
License: GPL-3
URL: https://github.com/mgirlich/tibblify
BugReports: https://github.com/mgirlich/tibblify/issues
Depends:
R (>= 3.4.0)
Imports:
cli,
lifecycle,
purrr,
rlang,
tibble,
vctrs
Suggests:
testthat (>= 3.0.0),
covr,
jsonlite,
knitr,
rmarkdown,
covr,
spelling,
jsonlite
testthat (>= 3.0.0)
LinkingTo:
cpp11,
vctrs (>= 0.3.6)
VignetteBuilder:
knitr
Config/testthat/edition: 3
Encoding: UTF-8
Language: en-US
LazyData: true
NeedsCompilation: yes
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
Imports:
cli,
rlang,
vctrs,
purrr,
tibble,
lifecycle
VignetteBuilder: knitr
Depends:
R (>= 3.4.0)
URL: https://github.com/mgirlich/tibblify
BugReports: https://github.com/mgirlich/tibblify/issues
Language: en-US
NeedsCompilation: yes
Config/testthat/edition: 3
LinkingTo:
cpp11,
vctrs (>= 0.3.6)
SystemRequirements: C++11