Create the package.json file for npm
create_package_json(app_name = "MyApp", description = "description",
semantic_version = "0.0.0", app_root_path = NULL, repository = "",
author = "", copyright_year = "", copyright_name = "",
website = "", license = "", deps = NULL)
name of your app. This is what end-users will see/call an app
short description of app
semantic version of app see https://semver.org/ for more information on versioning
app_root_path to where package.json will be written
purely for info- does the shiny app live in a repository (e.g. GitHub)
author of the app
year of copyright
copyright-holder's name
website of app or company
license of the App. Not the full license, only the title (e.g. MIT, or GPLv3)
is to allow testing with testthat
outputs package.json file with user-input modifications