├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── SUPPORT.md └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── array_utils.R ├── cast.R ├── coerce.R ├── delete.R ├── errors.R ├── extract.R ├── flatten.R ├── format.R ├── format_json.R ├── format_json_rowwise.R ├── got_chars.R ├── json.R ├── json_convert_value.R ├── json_hoist.R ├── json_path.R ├── json_type.R ├── json_unnest_longer.R ├── json_unnest_wider.R ├── jsontools-package.R ├── keys.R ├── modify.R ├── object_utils.R ├── prettify.R ├── read_json.R ├── sqlite_utils.R ├── utils-pipe.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data └── got_chars_json.rda ├── inst └── WORDLIST ├── jsontools.Rproj ├── man ├── format_json.Rd ├── format_json_rowwise.Rd ├── got_chars_json.Rd ├── json2.Rd ├── json_array_agg.Rd ├── json_array_length.Rd ├── json_array_types.Rd ├── json_assert_valid.Rd ├── json_delete.Rd ├── json_extract.Rd ├── json_flatten.Rd ├── json_hoist.Rd ├── json_keys.Rd ├── json_merge.Rd ├── json_mutate.Rd ├── json_path_exists.Rd ├── json_prettify.Rd ├── json_type.Rd ├── json_u.Rd ├── json_unnest_longer.Rd ├── json_unnest_wider.Rd ├── json_wrap_scalars.Rd ├── jsontools-package.Rd ├── new_json_object.Rd ├── object.Rd ├── parse_json.Rd ├── parse_json_vector.Rd ├── pipe.Rd ├── read_json.Rd ├── vec_cast.json2.Rd ├── vec_ptype2.json2.Rd └── write_json.Rd ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── array_utils.md │ ├── error_invalid_json.md │ ├── extract.md │ ├── flatten.md │ ├── json_convert_value.md │ ├── json_hoist.md │ ├── json_unnest_longer.md │ ├── json_unnest_wider.md │ ├── modify.md │ ├── prettify.md │ └── read_json.md │ ├── data │ ├── error_invalid_json.txt │ ├── json_unnest_longer_artists_df.rds │ └── json_unnest_longer_item_df.rds │ ├── helper-common_vars.R │ ├── test-array_utils.R │ ├── test-cast.R │ ├── test-construction.R │ ├── test-delete.R │ ├── test-error_invalid_json.R │ ├── test-extract.R │ ├── test-flatten.R │ ├── test-format_json.R │ ├── test-format_json_rowwise.R │ ├── test-json_convert_value.R │ ├── test-json_hoist.R │ ├── test-json_type.R │ ├── test-json_unnest_longer.R │ ├── test-json_unnest_wider.R │ ├── test-keys.R │ ├── test-modify.R │ ├── test-prettify.R │ └── test-read_json.R └── vignettes ├── .gitignore ├── got_chars.Rmd └── reading-writing-json.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | inst/doc 3 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/array_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/array_utils.R -------------------------------------------------------------------------------- /R/cast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/cast.R -------------------------------------------------------------------------------- /R/coerce.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/coerce.R -------------------------------------------------------------------------------- /R/delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/delete.R -------------------------------------------------------------------------------- /R/errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/errors.R -------------------------------------------------------------------------------- /R/extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/extract.R -------------------------------------------------------------------------------- /R/flatten.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/flatten.R -------------------------------------------------------------------------------- /R/format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/format.R -------------------------------------------------------------------------------- /R/format_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/format_json.R -------------------------------------------------------------------------------- /R/format_json_rowwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/format_json_rowwise.R -------------------------------------------------------------------------------- /R/got_chars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/got_chars.R -------------------------------------------------------------------------------- /R/json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json.R -------------------------------------------------------------------------------- /R/json_convert_value.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json_convert_value.R -------------------------------------------------------------------------------- /R/json_hoist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json_hoist.R -------------------------------------------------------------------------------- /R/json_path.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json_path.R -------------------------------------------------------------------------------- /R/json_type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json_type.R -------------------------------------------------------------------------------- /R/json_unnest_longer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json_unnest_longer.R -------------------------------------------------------------------------------- /R/json_unnest_wider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/json_unnest_wider.R -------------------------------------------------------------------------------- /R/jsontools-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/jsontools-package.R -------------------------------------------------------------------------------- /R/keys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/keys.R -------------------------------------------------------------------------------- /R/modify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/modify.R -------------------------------------------------------------------------------- /R/object_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/object_utils.R -------------------------------------------------------------------------------- /R/prettify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/prettify.R -------------------------------------------------------------------------------- /R/read_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/read_json.R -------------------------------------------------------------------------------- /R/sqlite_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/sqlite_utils.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/got_chars_json.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/data/got_chars_json.rda -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /jsontools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/jsontools.Rproj -------------------------------------------------------------------------------- /man/format_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/format_json.Rd -------------------------------------------------------------------------------- /man/format_json_rowwise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/format_json_rowwise.Rd -------------------------------------------------------------------------------- /man/got_chars_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/got_chars_json.Rd -------------------------------------------------------------------------------- /man/json2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json2.Rd -------------------------------------------------------------------------------- /man/json_array_agg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_array_agg.Rd -------------------------------------------------------------------------------- /man/json_array_length.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_array_length.Rd -------------------------------------------------------------------------------- /man/json_array_types.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_array_types.Rd -------------------------------------------------------------------------------- /man/json_assert_valid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_assert_valid.Rd -------------------------------------------------------------------------------- /man/json_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_delete.Rd -------------------------------------------------------------------------------- /man/json_extract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_extract.Rd -------------------------------------------------------------------------------- /man/json_flatten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_flatten.Rd -------------------------------------------------------------------------------- /man/json_hoist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_hoist.Rd -------------------------------------------------------------------------------- /man/json_keys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_keys.Rd -------------------------------------------------------------------------------- /man/json_merge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_merge.Rd -------------------------------------------------------------------------------- /man/json_mutate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_mutate.Rd -------------------------------------------------------------------------------- /man/json_path_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_path_exists.Rd -------------------------------------------------------------------------------- /man/json_prettify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_prettify.Rd -------------------------------------------------------------------------------- /man/json_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_type.Rd -------------------------------------------------------------------------------- /man/json_u.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_u.Rd -------------------------------------------------------------------------------- /man/json_unnest_longer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_unnest_longer.Rd -------------------------------------------------------------------------------- /man/json_unnest_wider.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_unnest_wider.Rd -------------------------------------------------------------------------------- /man/json_wrap_scalars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/json_wrap_scalars.Rd -------------------------------------------------------------------------------- /man/jsontools-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/jsontools-package.Rd -------------------------------------------------------------------------------- /man/new_json_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/new_json_object.Rd -------------------------------------------------------------------------------- /man/object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/object.Rd -------------------------------------------------------------------------------- /man/parse_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/parse_json.Rd -------------------------------------------------------------------------------- /man/parse_json_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/parse_json_vector.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/read_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/read_json.Rd -------------------------------------------------------------------------------- /man/vec_cast.json2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/vec_cast.json2.Rd -------------------------------------------------------------------------------- /man/vec_ptype2.json2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/vec_ptype2.json2.Rd -------------------------------------------------------------------------------- /man/write_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/man/write_json.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/array_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/array_utils.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/error_invalid_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/error_invalid_json.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/extract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/extract.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/flatten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/flatten.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/json_convert_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/json_convert_value.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/json_hoist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/json_hoist.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/json_unnest_longer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/json_unnest_longer.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/json_unnest_wider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/json_unnest_wider.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/modify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/modify.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/prettify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/prettify.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/read_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/_snaps/read_json.md -------------------------------------------------------------------------------- /tests/testthat/data/error_invalid_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/data/error_invalid_json.txt -------------------------------------------------------------------------------- /tests/testthat/data/json_unnest_longer_artists_df.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/data/json_unnest_longer_artists_df.rds -------------------------------------------------------------------------------- /tests/testthat/data/json_unnest_longer_item_df.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/data/json_unnest_longer_item_df.rds -------------------------------------------------------------------------------- /tests/testthat/helper-common_vars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/helper-common_vars.R -------------------------------------------------------------------------------- /tests/testthat/test-array_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-array_utils.R -------------------------------------------------------------------------------- /tests/testthat/test-cast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-cast.R -------------------------------------------------------------------------------- /tests/testthat/test-construction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-construction.R -------------------------------------------------------------------------------- /tests/testthat/test-delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-delete.R -------------------------------------------------------------------------------- /tests/testthat/test-error_invalid_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-error_invalid_json.R -------------------------------------------------------------------------------- /tests/testthat/test-extract.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-extract.R -------------------------------------------------------------------------------- /tests/testthat/test-flatten.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-flatten.R -------------------------------------------------------------------------------- /tests/testthat/test-format_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-format_json.R -------------------------------------------------------------------------------- /tests/testthat/test-format_json_rowwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-format_json_rowwise.R -------------------------------------------------------------------------------- /tests/testthat/test-json_convert_value.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-json_convert_value.R -------------------------------------------------------------------------------- /tests/testthat/test-json_hoist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-json_hoist.R -------------------------------------------------------------------------------- /tests/testthat/test-json_type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-json_type.R -------------------------------------------------------------------------------- /tests/testthat/test-json_unnest_longer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-json_unnest_longer.R -------------------------------------------------------------------------------- /tests/testthat/test-json_unnest_wider.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-json_unnest_wider.R -------------------------------------------------------------------------------- /tests/testthat/test-keys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-keys.R -------------------------------------------------------------------------------- /tests/testthat/test-modify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-modify.R -------------------------------------------------------------------------------- /tests/testthat/test-prettify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-prettify.R -------------------------------------------------------------------------------- /tests/testthat/test-read_json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/tests/testthat/test-read_json.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/got_chars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/vignettes/got_chars.Rmd -------------------------------------------------------------------------------- /vignettes/reading-writing-json.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgirlich/jsontools/HEAD/vignettes/reading-writing-json.Rmd --------------------------------------------------------------------------------