1Package: RJSONIO
2Version: 1.3-1.6
3Title: Serialize R Objects to JSON, JavaScript Object Notation
4Description: This is a package that allows conversion to and from
5  data in Javascript object notation (JSON) format.
6  This allows R objects to be inserted into Javascript/ECMAScript/ActionScript code
7  and allows R programmers to read and convert JSON content to R objects.
8  This is an alternative to rjson package. Originally, that was too slow for converting large R objects to JSON
9  and was not extensible.  rjson's performance is now similar to this package, and perhaps slightly faster in some cases.
10  This package uses methods and is readily extensible by defining methods for different classes,
11  vectorized operations, and C code and callbacks to R functions for deserializing JSON objects to R.
12  The two packages intentionally share the same basic interface. This package (RJSONIO) has many additional
13  options to allow customizing the generation and processing of JSON content.
14  This package uses libjson rather than implementing yet another JSON parser. The aim is to support
15  other general projects by building on their work, providing feedback and benefit from their ongoing development.
16Note: See http://www.json.org/JSON_checker/test.zip for tests. We now
17        use code from the libjson project
18        (http://libjson.sourceforge.net).
19License: BSD_3_clause + file LICENSE
20Imports: methods
21Authors@R: c(person("CRAN Team", role = c('ctb', 'cre'),
22                    email = "CRAN@r-project.org",
23                    comment = "de facto maintainer since 2014"),
24             person("Duncan", "Temple Lang", role = "aut",
25                    email = "duncan@r-project.org",
26	            comment = c(ORCID = "0000-0003-0159-1546")),
27	     person("Jonathan", "Wallace", role = "aut",
28	            comment = "aka ninja9578, author of included libjson sources"))
29Collate: readJSON.R asVars.R isValid.R json.R simpleHandler.R stream.R
30Biarch: true
31NeedsCompilation: yes
32Author: CRAN Team [ctb, cre] (de facto maintainer since 2014),
33  Duncan Temple Lang [aut] (<https://orcid.org/0000-0003-0159-1546>),
34  Jonathan Wallace [aut] (aka ninja9578, author of included libjson
35    sources)
36Maintainer: CRAN Team <CRAN@r-project.org>
37Packaged: 2021-09-16 12:03:59 UTC; ripley
38Repository: CRAN
39Date/Publication: 2021-09-16 18:47:13 UTC
40