-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clarify authorship and copyright [fixes #33]
- Loading branch information
1 parent
8b057b3
commit 298d9f1
Showing
3 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,15 @@ Version: 0.1.18.9002 | |
Authors@R: c( | ||
person("Mike", "Cheng", role = c("aut", "cre", 'cph'), | ||
email = "[email protected]"), | ||
person("Yao", "Yuan", role = "cph", email = "[email protected]", | ||
person("Yao", "Yuan", role = c("aut", "cph"), email = "[email protected]", | ||
comment="Author of bundled yyjson")) | ||
Maintainer: Mike Cheng <[email protected]> | ||
Description: A fast JSON parser, generator and validator which converts JSON | ||
data to/from R objects. The standard R data types are supported | ||
(e.g. logical, numeric, integer) with configurable handling of NULL and NA | ||
values. Data frames, atomic vectors and lists are all supported as data | ||
containers translated to/from JSON. | ||
This implementation is a wrapper around the 'yyjson' 'C' library which | ||
This implementation wraps the 'yyjson' 'C' library which | ||
is available from <https://github.com/ibireme/yyjson>. | ||
License: MIT + file LICENSE | ||
URL: https://github.com/coolbutuseless/yyjsonr, https://coolbutuseless.github.io/package/yyjsonr/ | ||
|
@@ -30,5 +30,6 @@ Suggests: | |
testthat (>= 3.0.0) | ||
Config/testthat/edition: 3 | ||
VignetteBuilder: knitr | ||
Copyright: Copyright (c) 2020 YaoYuan. See 'inst/COPYRIGHTS' for LICENSE for inclued code. | ||
Depends: | ||
R (>= 3.5.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
The included 'yyjson' library code is Copyright (c) 2020 YaoYuan <[email protected]>. | ||
|
||
See 'inst/LICENSE-yyjson.txt' for license file from original source code. |