| @@ -3,3 +3,4 @@ | |||
| ^node_modules$ | |||
| ^package\.json$ | |||
| ^package-lock\.json$ | |||
| ^LICENSE\.md$ | |||
| @@ -1,13 +1,14 @@ | |||
| Package: frappeCharts | |||
| Title: What the Package Does (One Line, Title Case) | |||
| Title: An htmlwidget demo package | |||
| Version: 0.0.0.9000 | |||
| Authors@R: | |||
| person(given = "Garrick", | |||
| family = "Aden-Buie", | |||
| role = c("aut", "cre"), | |||
| email = "Garrick.Aden-Buie@moffitt.org", | |||
| email = "garrick@adenbuie.com", | |||
| comment = c(ORCID = "0000-0002-7111-0077")) | |||
| Description: What the package does (one paragraph). | |||
| Description: A demonstration package: what are htmlwidgets and | |||
| how to build one. | |||
| License: MIT + file LICENSE | |||
| Encoding: UTF-8 | |||
| LazyData: true | |||
| @@ -0,0 +1,2 @@ | |||
| YEAR: 2020 | |||
| COPYRIGHT HOLDER: Garrick Aden-Buie | |||
| @@ -0,0 +1,21 @@ | |||
| # MIT License | |||
| Copyright (c) 2020 Garrick Aden-Buie | |||
| Permission is hereby granted, free of charge, to any person obtaining a copy | |||
| of this software and associated documentation files (the "Software"), to deal | |||
| in the Software without restriction, including without limitation the rights | |||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |||
| copies of the Software, and to permit persons to whom the Software is | |||
| furnished to do so, subject to the following conditions: | |||
| The above copyright notice and this permission notice shall be included in all | |||
| copies or substantial portions of the Software. | |||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |||
| SOFTWARE. | |||
| @@ -0,0 +1,24 @@ | |||
| # frappeCharts - An HTML Widgets Demo | |||
| <!-- badges: start --> | |||
| <!-- badges: end --> | |||
| [js4shiny]: https://js4shiny.com | |||
| [js4rsconf]: https://github.com/rstudio-conf-2020/js-for-shiny | |||
| [htmlwidget]: https://www.htmlwidgets.org/ | |||
| [frappe-charts]: https://frappe.io/charts | |||
| This is a demo repository for the | |||
| [JavaScript for Shiny Users workshop][js4shiny] at | |||
| [rstudio::conf][js4rsconf]. | |||
| The goal is to build an [htmlwidget] | |||
| around the [Frappe Charts][frappe-charts] JavaScript library. | |||
| The repository is itself a walk through of the project. | |||
| Walk through the | |||
| [commit log](https://github.com/gadenbuie/js4shiny-frappeCharts/commits/master) | |||
| or read through the | |||
| [dev journal](https://github.com/gadenbuie/js4shiny-frappeCharts/blob/master/dev/dev.md) | |||
| to explore the project and the changes made at each step of the process. | |||