-
Notifications
You must be signed in to change notification settings - Fork 12
/
DESCRIPTION
58 lines (58 loc) · 1.61 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Package: crrri
Type: Package
Title: An Interface with Headless Chromium/Chrome
Version: 0.0.13
Authors@R: c(
person("Romain", "Lesur", role = c("aut", "cre"), email = "romain.lesur@gmail.com", comment = c(ORCID = "0000-0002-0721-5595")),
person("Christophe", "Dervieux", role = c("aut", "cph"), email = "christophe.dervieux@gmail.com", comment = c(ORCID = "0000-0003-4474-2498")),
person("Miles", "McBain", role = "ctb", comment = "websocket connection functions"),
person(family = "The Chromium authors", role = "ctb", comment = "DevTools Protocol documentation"),
person("Yihui", "Xie", role = "ctb", comment = "function to find chrome on all OS")
)
Maintainer: Romain Lesur <romain.lesur@gmail.com>
Description: This is a native implementation of the Chrome DevTools Protocol.
License: MIT + file LICENSE
URL: https://rlesur.github.io/crrri/, https://github.com/RLesur/crrri
BugReports: https://github.com/RLesur/crrri/issues
SystemRequirements: Chromium or Chrome
Imports:
assertthat,
httpuv (>= 1.5.0),
httr,
jsonlite,
later,
processx,
promises,
purrr,
rlang (>= 0.3.0),
R6,
utils,
websocket,
rappdirs
Suggests:
debugme,
knitr,
rmarkdown,
testthat (>= 2.1.0),
covr,
rstudioapi,
withr
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE, load = 'source')
RoxygenNote: 7.1.0
VignetteBuilder: knitr
Collate:
'wait.R'
'hold.R'
'utils.R'
'http_methods.R'
'CDProtocol.R'
'reexport-promises.R'
'domain.R'
'EventEmitter.R'
'CDPSession.R'
'CDPRemote.R'
'Chrome.R'
'helpers.R'
'zzz.R'