coronavirus

The coronavirus dataset

https://github.com/ramikrispin/coronavirus

Science Score: 10.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    1 of 2 committers (50.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (16.7%) to scientific vocabulary

Keywords

covid-19 covid19 covid19-data dataset rstats
Last synced: 11 months ago · JSON representation

Repository

The coronavirus dataset

Basic Info
Statistics
  • Stars: 496
  • Watchers: 31
  • Forks: 204
  • Open Issues: 3
  • Releases: 10
Topics
covid-19 covid19 covid19-data dataset rstats
Created over 6 years ago · Last pushed over 3 years ago
Metadata Files
Readme License

README.Rmd

---
output: github_document
---

 

```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE, 
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%",
  message=FALSE, 
  warning=FALSE
)
 
library(coronavirus)
``` 
# coronavirus  


 
[![R-CMD](https://github.com/RamiKrispin/coronavirus/workflows/build/badge.svg?branch=master)](https://github.com/RamiKrispin/coronavirus/actions/workflows/main.yml)
[![Data Pipeline](https://github.com/RamiKrispin/coronavirus/actions/workflows/data_refresh.yml/badge.svg?branch=main)](https://github.com/RamiKrispin/coronavirus/actions/workflows/data_refresh.yml)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/coronavirus)](https://cran.r-project.org/package=coronavirus)
[![lifecycle](https://img.shields.io/badge/lifecycle-stable-green.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/license/mit/)
[![GitHub commit](https://img.shields.io/github/last-commit/RamiKrispin/coronavirus)](https://github.com/RamiKrispin/coronavirus/commit/master)
[![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/coronavirus)](https://cran.r-project.org/package=coronavirus)




The coronavirus package provides a tidy format for the COVID-19 dataset collected by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University. The dataset includes daily new and death cases between January 2020 and March 2023 and recovery cases until August 2022.

 
More details available [here](https://RamiKrispin.github.io/coronavirus/), and a `csv` format of the package dataset available [here](https://github.com/RamiKrispin/coronavirus/tree/master/csv)

Data source: https://github.com/CSSEGISandData/COVID-19



  
Source: Centers for Disease Control and Prevention's Public Health Image Library
## Important Notes * As of March 10th, 2023, JHU CCSE stopped collecting and tracking new cases * As of August 4th, 2022 JHU CCSE stopped track recovery cases, please see this [issue](https://github.com/RamiKrispin/coronavirus/issues/71) for more details * Negative values and/or anomalies may occurred in the data for the following reasons: * The calculation of the daily cases from the raw data which is in cumulative format is done by taking the daily difference. In some cases, some retro updates not tie to the day that they actually occurred such as removing false positive cases * Anomalies or error in the raw data * Please see this [issue](https://github.com/RamiKrispin/coronavirus/issues/55) for more details ## Vignettes Additional documentation available on the following vignettes: * [Introduction to the Coronavirus Dataset](https://ramikrispin.github.io/coronavirus/articles/intro_coronavirus_dataset.html) * [Covid19R Project Data Format](https://ramikrispin.github.io/coronavirus/articles/covid19R.html) * [Covid19 Vaccine Data](https://ramikrispin.github.io/coronavirus/articles/covid19_vaccine.html) * [Geospatial Visualization](https://ramikrispin.github.io/coronavirus/articles/geospatial_visualization.html) ## Installation Install the CRAN version: ```r install.packages("coronavirus") ``` Install the Github version (refreshed on a daily bases): ``` r # install.packages("devtools") devtools::install_github("RamiKrispin/coronavirus") ``` ## Datasets The package provides the following two datasets: * **coronavirus** - tidy (long) format of the JHU CCSE [datasets](https://github.com/CSSEGISandData/COVID-19/tree/master/csse_covid_19_data/csse_covid_19_time_series). That includes the following columns: * `date` - The date of the observation, using `Date` class * `province` - Name of province/state, for countries where data is provided split across multiple provinces/states * `country` - Name of country/region * `lat` - The latitude code * `long` - The longitude code * `type` - An indicator for the type of cases (confirmed, death, recovered) * `cases` - Number of cases on given date * `uid` - Country code * `province_state` - Province or state if applicable * `iso2` - Officially assigned country code identifiers with two-letter * `iso3` - Officially assigned country code identifiers with three-letter * `code3` - UN country code * `fips` - Federal Information Processing Standards code that uniquely identifies counties within the USA * `combined_key` - Country and province (if applicable) * `population` - Country or province population * `continent_name` - Continent name * `continent_code` - Continent code * **covid19_vaccine** - a tidy (long) format of the the Johns Hopkins [Centers for Civic Impact](https://govex.jhu.edu/) global vaccination [dataset](https://github.com/govex/COVID-19/tree/master/data_tables/vaccine_data) by country. This dataset includes the following columns: * `country_region` - Country or region name * `date` - Data collection date in YYYY-MM-DD format * `doses_admin` - Cumulative number of doses administered. When a vaccine requires multiple doses, each one is counted independently * `people_partially_vaccinated` - Cumulative number of people who received at least one vaccine dose. When the person receives a prescribed second dose, it is not counted twice * `people_fully_vaccinated` - Cumulative number of people who received all prescribed doses necessary to be considered fully vaccinated * `report_date_string` - Data report date in YYYY-MM-DD format * `uid` - Country code * `province_state` - Province or state if applicable * `iso2` - Officially assigned country code identifiers with two-letter * `iso3` - Officially assigned country code identifiers with three-letter * `code3` - UN country code * `fips` - Federal Information Processing Standards code that uniquely identifies counties within the USA * `lat` - Latitude * `long` - Longitude * `combined_key` - Country and province (if applicable) * `population` - Country or province population * `continent_name` - Continent name * `continent_code` - Continent code The `refresh_coronavirus_jhu` function enables to load of the data directly from the package repository using the [Covid19R](https://covid19r.github.io/documentation/) project [data standard format](https://covid19r.github.io/documentation/data-format-standard.html): ```{r} covid19_df <- refresh_coronavirus_jhu() head(covid19_df) ``` ## Usage ```{r} data("coronavirus") head(coronavirus) ``` Summary of the total confrimed cases by country (top 20): ```{r} library(dplyr) summary_df <- coronavirus %>% filter(type == "confirmed") %>% group_by(country) %>% summarise(total_cases = sum(cases)) %>% arrange(-total_cases) summary_df %>% head(20) ``` Summary of new cases during the past 24 hours by country and type (as of `r max(coronavirus$date)`): ```{r} library(tidyr) coronavirus %>% filter(date == max(date)) %>% select(country, type, cases) %>% group_by(country, type) %>% summarise(total_cases = sum(cases)) %>% pivot_wider(names_from = type, values_from = total_cases) %>% arrange(-confirmed) ``` Plotting daily confirmed and death cases in Brazil: ``` r library(plotly) coronavirus %>% group_by(type, date) %>% summarise(total_cases = sum(cases)) %>% pivot_wider(names_from = type, values_from = total_cases) %>% arrange(date) %>% mutate(active = confirmed - death - recovery) %>% mutate(active_total = cumsum(active), recovered_total = cumsum(recovery), death_total = cumsum(death)) %>% plot_ly(x = ~ date, y = ~ active_total, name = 'Active', fillcolor = '#1f77b4', type = 'scatter', mode = 'none', stackgroup = 'one') %>% add_trace(y = ~ death_total, name = "Death", fillcolor = '#E41317') %>% add_trace(y = ~recovered_total, name = 'Recovered', fillcolor = 'forestgreen') %>% layout(title = "Distribution of Covid19 Cases Worldwide", legend = list(x = 0.1, y = 0.9), yaxis = list(title = "Number of Cases"), xaxis = list(title = "Source: Johns Hopkins University Center for Systems Science and Engineering")) ``` ```{r include=FALSE} library(plotly) df <- coronavirus %>% filter(country == "Brazil", is.na(province)) p_1 <- plot_ly(data = df %>% filter(type == "confirmed"), x = ~ date, y = ~ cases, name = "Confirmed", type = "scatter", mode = "line") %>% layout(yaxis = list(title = "Cases"), xaxis = list(title = "")) p_2 <- plot_ly(data = df %>% filter(type == "death"), x = ~ date, y = ~ cases, name = "Death", line = list(color = "red"), type = "scatter", mode = "line") %>% layout(yaxis = list(title = "Cases"), xaxis = list(title = "Source: Johns Hopkins University Center for Systems Science and Engineering")) p1 <- subplot(p_1, p_2, nrows = 2, titleX = TRUE, titleY = TRUE) %>% layout(title = "Brazil - Daily Confirmed and Death Cases", margin = list(t = 60, b = 60, l = 40, r = 40), legend = list(x = 0.05, y = 1)) orca(p1, "man/figures/brazil_cases.svg") ``` Plot the confirmed cases distribution by counrty with treemap plot: ``` r conf_df <- coronavirus %>% filter(type == "confirmed") %>% group_by(country) %>% summarise(total_cases = sum(cases)) %>% arrange(-total_cases) %>% mutate(parents = "Confirmed") %>% ungroup() plot_ly(data = conf_df, type= "treemap", values = ~total_cases, labels= ~ country, parents= ~parents, domain = list(column=0), name = "Confirmed", textinfo="label+value+percent parent") ``` ```{r include=FALSE} conf_df <- coronavirus %>% filter(type == "confirmed") %>% group_by(country) %>% summarise(total_cases = sum(cases), .groups = "drop") %>% arrange(-total_cases) %>% mutate(parents = "Confirmed") %>% ungroup() p2 <- plot_ly(data = conf_df, type= "treemap", values = ~total_cases, labels= ~ country, parents= ~parents, domain = list(column=0), name = "Confirmed", textinfo="label+value+percent parent") orca(p2, "man/figures/treemap_conf.svg") ``` ```{r} data(covid19_vaccine) head(covid19_vaccine) ``` Taking a snapshot of the data from the most recent date available and calculate the ratio between total doses admin and the population size: ```{r} df_summary <- covid19_vaccine |> filter(date == max(date)) |> select(date, country_region, doses_admin, total = people_at_least_one_dose, population, continent_name) |> mutate(doses_pop_ratio = doses_admin / population, total_pop_ratio = total / population) |> filter(country_region != "World", !is.na(population), !is.na(total)) |> arrange(- total) head(df_summary, 10) ``` Plot of the total doses and population ratio by country: ```r # Setting the diagonal lines range line_start <- 10000 line_end <- 1500 * 10 ^ 6 # Filter the data d <- df_summary |> filter(country_region != "World", !is.na(population), !is.na(total)) # Replot it p3 <- plot_ly() |> add_markers(x = d$population, y = d$total, text = ~ paste("Country: ", d$country_region, "
", "Population: ", d$population, "
", "Total Doses: ", d$total, "
", "Ratio: ", round(d$total_pop_ratio, 2), sep = ""), color = d$continent_name, type = "scatter", mode = "markers") |> add_lines(x = c(line_start, line_end), y = c(line_start, line_end), showlegend = FALSE, line = list(color = "gray", width = 0.5)) |> add_lines(x = c(line_start, line_end), y = c(0.5 * line_start, 0.5 * line_end), showlegend = FALSE, line = list(color = "gray", width = 0.5)) |> add_lines(x = c(line_start, line_end), y = c(0.25 * line_start, 0.25 * line_end), showlegend = FALSE, line = list(color = "gray", width = 0.5)) |> add_annotations(text = "1:1", x = log10(line_end * 1.25), y = log10(line_end * 1.25), showarrow = FALSE, textangle = -25, font = list(size = 8), xref = "x", yref = "y") |> add_annotations(text = "1:2", x = log10(line_end * 1.25), y = log10(0.5 * line_end * 1.25), showarrow = FALSE, textangle = -25, font = list(size = 8), xref = "x", yref = "y") |> add_annotations(text = "1:4", x = log10(line_end * 1.25), y = log10(0.25 * line_end * 1.25), showarrow = FALSE, textangle = -25, font = list(size = 8), xref = "x", yref = "y") |> add_annotations(text = "Source: Johns Hopkins University - Centers for Civic Impact", showarrow = FALSE, xref = "paper", yref = "paper", x = -0.05, y = - 0.33) |> layout(title = "Covid19 Vaccine - Total Doses vs. Population Ratio (Log Scale)", margin = list(l = 50, r = 50, b = 90, t = 70), yaxis = list(title = "Number of Doses", type = "log"), xaxis = list(title = "Population Size", type = "log"), legend = list(x = 0.75, y = 0.05)) ``` ```{r include=FALSE} # Setting the diagonal lines range line_start <- 10000 line_end <- 1500 * 10 ^ 6 # Filter the data d <- df_summary |> filter(country_region != "World", !is.na(population), !is.na(total)) # Replot it p3 <- plot_ly() |> add_markers(x = d$population, y = d$total, text = ~ paste("Country: ", d$country_region, "
", "Population: ", d$population, "
", "Total Doses: ", d$total, "
", "Ratio: ", round(d$total_pop_ratio, 2), sep = ""), color = d$continent_name, type = "scatter", mode = "markers") |> add_lines(x = c(line_start, line_end), y = c(line_start, line_end), showlegend = FALSE, line = list(color = "gray", width = 0.5)) |> add_lines(x = c(line_start, line_end), y = c(0.5 * line_start, 0.5 * line_end), showlegend = FALSE, line = list(color = "gray", width = 0.5)) |> add_lines(x = c(line_start, line_end), y = c(0.25 * line_start, 0.25 * line_end), showlegend = FALSE, line = list(color = "gray", width = 0.5)) |> add_annotations(text = "1:1", x = log10(line_end * 1.25), y = log10(line_end * 1.25), showarrow = FALSE, textangle = -25, font = list(size = 8), xref = "x", yref = "y") |> add_annotations(text = "1:2", x = log10(line_end * 1.25), y = log10(0.5 * line_end * 1.25), showarrow = FALSE, textangle = -25, font = list(size = 8), xref = "x", yref = "y") |> add_annotations(text = "1:4", x = log10(line_end * 1.25), y = log10(0.25 * line_end * 1.25), showarrow = FALSE, textangle = -25, font = list(size = 8), xref = "x", yref = "y") |> add_annotations(text = "Source: Johns Hopkins University - Centers for Civic Impact", showarrow = FALSE, xref = "paper", yref = "paper", x = -0.05, y = - 0.33) |> layout(title = "Covid19 Vaccine - Total Doses vs. Population Ratio (Log Scale)", margin = list(l = 50, r = 50, b = 90, t = 70), yaxis = list(title = "Number of Doses", type = "log"), xaxis = list(title = "Population Size", type = "log"), legend = list(x = 0.75, y = 0.05)) orca(p3, "man/figures/country_summary.svg") ``` ## Dashboard **Note:** Currently, the dashboard is under maintenance due to recent changes in the data structure. Please see this [issue](https://github.com/RamiKrispin/coronavirus_dashboard/issues/25) A supporting dashboard is available [here](https://ramikrispin.github.io/coronavirus_dashboard/) [](https://ramikrispin.github.io/coronavirus_dashboard/) ## Data Sources The raw data pulled and arranged by the Johns Hopkins University Center for Systems Science and Engineering (JHU CCSE) from the following resources: * World Health Organization (WHO): https://www.who.int/
* DXY.cn. Pneumonia. 2020. https://ncov.dxy.cn/ncovh5/view/pneumonia.
* BNO News: https://bnonews.com/index.php/2020/04/the-latest-coronavirus-cases/
* National Health Commission of the People’s Republic of China (NHC):
http:://www.nhc.gov.cn/xcs/yqtb/list_gzbd.shtml
* China CDC (CCDC): http:://weekly.chinacdc.cn/news/TrackingtheEpidemic.htm
* Hong Kong Department of Health: https://www.chp.gov.hk/en/features/102465.html
* Macau Government: https://www.ssm.gov.mo/portal/
* Taiwan CDC: https://sites.google.com/cdc.gov.tw/2019ncov/taiwan?authuser=0
* US CDC: https://www.cdc.gov/coronavirus/2019-ncov/index.html
* Government of Canada: https://www.canada.ca/en/public-health/services/diseases/2019-novel-coronavirus-infection/symptoms.html
* Australia Government Department of Health:https://www.health.gov.au/health-alerts/covid-19
* European Centre for Disease Prevention and Control (ECDC): https://www.ecdc.europa.eu/en/covid-19/country-overviews * Ministry of Health Singapore (MOH): https://www.moh.gov.sg/covid-19 * Italy Ministry of Health: https://www.salute.gov.it/nuovocoronavirus * 1Point3Arces: https://coronavirus.1point3acres.com/en * WorldoMeters: https://www.worldometers.info/coronavirus/ * COVID Tracking Project: https://covidtracking.com/data/. (US Testing and Hospitalization Data. We use the maximum reported value from "Currently" and "Cumulative" Hospitalized for our hospitalization number reported for each state.) * French Government: https://dashboard.covid19.data.gouv.fr/ * COVID Live (Australia): https://covidlive.com.au/ * Washington State Department of Health:https://doh.wa.gov/emergencies/covid-19 * Maryland Department of Health: https://coronavirus.maryland.gov/ * New York State Department of Health: https://health.data.ny.gov/Health/New-York-State-Statewide-COVID-19-Testing/xdss-u53e/data * NYC Department of Health and Mental Hygiene: https://www.nyc.gov/site/doh/covid/covid-19-data.page and https://github.com/nychealth/coronavirus-data * Florida Department of Health Dashboard: https://services1.arcgis.com/CY1LXxl9zlJeBuRZ/arcgis/rest/services/Florida_COVID19_Cases/FeatureServer/0 and https://fdoh.maps.arcgis.com/apps/dashboards/index.html#/8d0de33f260d444c852a615dc7837c86 * Palestine (West Bank and Gaza): https://corona.ps/details * Israel: https://govextra.gov.il/ministry-of-health/corona/corona-virus/ * Colorado: https://covid19.colorado.gov/

Owner

  • Name: Rami Krispin
  • Login: RamiKrispin
  • Kind: user
  • Location: Cupertino, California, US

Data science and engineering manager | Author, open-source contributor 👨🏻‍💻 | Time-series analysis and forecasting ❤️ | Opinions are my own 😎

GitHub Events

Total
  • Watch event: 3
  • Fork event: 1
Last Year
  • Watch event: 3
  • Fork event: 1

Committers

Last synced: over 2 years ago

All Time
  • Total Commits: 261
  • Total Committers: 2
  • Avg Commits per committer: 130.5
  • Development Distribution Score (DDS): 0.226
Past Year
  • Commits: 261
  • Committers: 2
  • Avg Commits per committer: 130.5
  • Development Distribution Score (DDS): 0.226
Top Committers
Name Email Commits
RamiKrispin r****p@u****u 202
rkrispin r****n@a****m 59
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: about 1 year ago

All Time
  • Total issues: 82
  • Total pull requests: 20
  • Average time to close issues: about 1 month
  • Average time to close pull requests: 7 days
  • Total issue authors: 34
  • Total pull request authors: 12
  • Average comments per issue: 3.21
  • Average comments per pull request: 1.1
  • Merged pull requests: 13
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 2
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 1
  • Pull request authors: 0
  • Average comments per issue: 0.0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • RamiKrispin (35)
  • KenneySnell (4)
  • sotirismargaritis (4)
  • aleixdorca (3)
  • wakibia (2)
  • jebyrnes (2)
  • shubhrampandey (2)
  • stepminer (2)
  • liamxg (2)
  • navmedvideos (1)
  • Dessiii (1)
  • MarkEdmondson1234 (1)
  • SagarS98 (1)
  • valmetisrinivas (1)
  • AntoineSoetewey (1)
Pull Request Authors
  • RamiKrispin (7)
  • laresbernardo (2)
  • lindbrook (2)
  • NEFARI0US (1)
  • pitmonticone (1)
  • aedobbyn (1)
  • jebyrnes (1)
  • mariabnd (1)
  • AryaVashisht (1)
  • science4u (1)
  • mine-cetinkaya-rundel (1)
  • BB1464 (1)
Top Labels
Issue Labels
enhancement (15) data changes (11) important! (9) documentation (8) task (7) bug (6) feature request (1)
Pull Request Labels
bug (1) documentation (1) enhancement (1) data changes (1) task (1)

Packages

  • Total packages: 3
  • Total downloads:
    • cran 485 last-month
  • Total docker downloads: 21,613
  • Total dependent packages: 0
    (may contain duplicates)
  • Total dependent repositories: 1
    (may contain duplicates)
  • Total versions: 32
  • Total maintainers: 1
proxy.golang.org: github.com/ramikrispin/coronavirus
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 5.5%
Average: 5.6%
Dependent repos count: 5.8%
Last synced: 11 months ago
proxy.golang.org: github.com/RamiKrispin/coronavirus
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 5.5%
Average: 5.6%
Dependent repos count: 5.8%
Last synced: 11 months ago
cran.r-project.org: coronavirus

The 2019 Novel Coronavirus COVID-19 (2019-nCoV) Dataset

  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 485 Last month
  • Docker Downloads: 21,613
Rankings
Forks count: 0.3%
Docker downloads count: 0.6%
Stargazers count: 0.7%
Average: 12.5%
Downloads: 20.7%
Dependent repos count: 23.9%
Dependent packages count: 28.7%
Maintainers (1)
Last synced: 11 months ago

Dependencies

DESCRIPTION cran
  • R >= 3.0.2 depends
  • devtools >= 2.2.2 imports
  • DT * suggests
  • dplyr * suggests
  • knitr * suggests
  • plotly * suggests
  • readr * suggests
  • remotes * suggests
  • rmarkdown * suggests
  • testthat >= 2.1.0 suggests
docs/articles/geospatial_visualization_files/leaflet-providers-1.1.17/package.json npm
  • chai ^4.1.2 development
  • eslint ^3.16.1 development
  • eslint-plugin-html ^2.0.1 development
  • mocha ^3.2.0 development
  • mocha-phantomjs-core ^2.1.1 development
  • mversion ^1.10.1 development
  • phantomjs-prebuilt ^2.1.16 development
  • uglify-js ^2.4.15 development
.github/workflows/data_refresh.yml actions
  • actions/checkout v2 composite
.github/workflows/main.yml actions
  • actions/checkout v2 composite
docker/dev/Dockerfile docker
  • docker.io/rkrispin/baser v4.1.0 build
docker/prod/Dockerfile docker
  • docker.io/rkrispin/baser v4.1.0 build
docker/rstudio/Dockerfile docker
  • docker.io/rkrispin/coronavirus prod.0.3.2 build
  • rkrispin/coronavirus dev.0.3.2 build
docker/test/Dockerfile docker
  • docker.io/rkrispin/coronavirus dev.0.3.1.9000 build
data_pipelines/covid19_cases_files/libs/core-js-2.5.3/package.json npm
  • @babel/cli ^7.7.7 development
  • @babel/core ^7.7.7 development
  • @babel/plugin-proposal-nullish-coalescing-operator ^7.7.4 development
  • @babel/plugin-proposal-optional-catch-binding ^7.7.4 development
  • @babel/plugin-proposal-optional-chaining ^7.7.5 development
  • @babel/plugin-transform-arrow-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoped-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoping ^7.7.4 development
  • @babel/plugin-transform-classes ^7.7.4 development
  • @babel/plugin-transform-computed-properties ^7.7.4 development
  • @babel/plugin-transform-destructuring ^7.7.4 development
  • @babel/plugin-transform-exponentiation-operator ^7.7.4 development
  • @babel/plugin-transform-literals ^7.7.4 development
  • @babel/plugin-transform-member-expression-literals ^7.7.4 development
  • @babel/plugin-transform-parameters ^7.7.7 development
  • @babel/plugin-transform-property-literals ^7.7.4 development
  • @babel/plugin-transform-shorthand-properties ^7.7.4 development
  • @babel/plugin-transform-spread ^7.7.4 development
  • @babel/plugin-transform-template-literals ^7.7.4 development
  • babel-loader ^8.0.6 development
  • babel-plugin-transform-es2015-modules-simple-commonjs ~0.3.0 development
  • babel-plugin-transform-for-of-as-array ^1.1.1 development
  • es-observable git+https://github.com/tc39/proposal-observable.git#bf4d87144b6189e793593868e3c022eb51a7d292 development
  • eslint ^6.8.0 development
  • eslint-import-resolver-webpack ^0.12.0 development
  • eslint-plugin-import ^2.19.1 development
  • eslint-plugin-node ^10.0.0 development
  • eslint-plugin-optimize-regex ^1.1.7 development
  • eslint-plugin-qunit ^4.0.0 development
  • eslint-plugin-sonarjs ^0.5.0 development
  • eslint-plugin-unicorn ^15.0.0 development
  • grunt ^1.0.4 development
  • grunt-cli ^1.3.2 development
  • grunt-contrib-clean ^2.0.0 development
  • grunt-contrib-copy ^1.0.0 development
  • grunt-contrib-uglify ^4.0.1 development
  • grunt-karma ^3.0.2 development
  • grunt-webpack ^3.1.3 development
  • karma ^4.4.1 development
  • karma-chrome-launcher ^3.1.0 development
  • karma-phantomjs-launcher ~1.0.4 development
  • karma-qunit ^4.0.0 development
  • lerna ^3.19.0 development
  • moon-unit ^0.2.2 development
  • phantomjs-prebuilt ~2.1.16 development
  • promises-aplus-tests ^2.1.2 development
  • puppeteer ~2.0.0 development
  • qunit ~2.9.3 development
  • webpack ^4.41.4 development
data_pipelines/vaccine_data_files/libs/core-js-2.5.3/package.json npm
  • @babel/cli ^7.7.7 development
  • @babel/core ^7.7.7 development
  • @babel/plugin-proposal-nullish-coalescing-operator ^7.7.4 development
  • @babel/plugin-proposal-optional-catch-binding ^7.7.4 development
  • @babel/plugin-proposal-optional-chaining ^7.7.5 development
  • @babel/plugin-transform-arrow-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoped-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoping ^7.7.4 development
  • @babel/plugin-transform-classes ^7.7.4 development
  • @babel/plugin-transform-computed-properties ^7.7.4 development
  • @babel/plugin-transform-destructuring ^7.7.4 development
  • @babel/plugin-transform-exponentiation-operator ^7.7.4 development
  • @babel/plugin-transform-literals ^7.7.4 development
  • @babel/plugin-transform-member-expression-literals ^7.7.4 development
  • @babel/plugin-transform-parameters ^7.7.7 development
  • @babel/plugin-transform-property-literals ^7.7.4 development
  • @babel/plugin-transform-shorthand-properties ^7.7.4 development
  • @babel/plugin-transform-spread ^7.7.4 development
  • @babel/plugin-transform-template-literals ^7.7.4 development
  • babel-loader ^8.0.6 development
  • babel-plugin-transform-es2015-modules-simple-commonjs ~0.3.0 development
  • babel-plugin-transform-for-of-as-array ^1.1.1 development
  • es-observable git+https://github.com/tc39/proposal-observable.git#bf4d87144b6189e793593868e3c022eb51a7d292 development
  • eslint ^6.8.0 development
  • eslint-import-resolver-webpack ^0.12.0 development
  • eslint-plugin-import ^2.19.1 development
  • eslint-plugin-node ^10.0.0 development
  • eslint-plugin-optimize-regex ^1.1.7 development
  • eslint-plugin-qunit ^4.0.0 development
  • eslint-plugin-sonarjs ^0.5.0 development
  • eslint-plugin-unicorn ^15.0.0 development
  • grunt ^1.0.4 development
  • grunt-cli ^1.3.2 development
  • grunt-contrib-clean ^2.0.0 development
  • grunt-contrib-copy ^1.0.0 development
  • grunt-contrib-uglify ^4.0.1 development
  • grunt-karma ^3.0.2 development
  • grunt-webpack ^3.1.3 development
  • karma ^4.4.1 development
  • karma-chrome-launcher ^3.1.0 development
  • karma-phantomjs-launcher ~1.0.4 development
  • karma-qunit ^4.0.0 development
  • lerna ^3.19.0 development
  • moon-unit ^0.2.2 development
  • phantomjs-prebuilt ~2.1.16 development
  • promises-aplus-tests ^2.1.2 development
  • puppeteer ~2.0.0 development
  • qunit ~2.9.3 development
  • webpack ^4.41.4 development
docs/data_pipelines/covid19_cases_files/libs/core-js-2.5.3/package.json npm
  • @babel/cli ^7.7.7 development
  • @babel/core ^7.7.7 development
  • @babel/plugin-proposal-nullish-coalescing-operator ^7.7.4 development
  • @babel/plugin-proposal-optional-catch-binding ^7.7.4 development
  • @babel/plugin-proposal-optional-chaining ^7.7.5 development
  • @babel/plugin-transform-arrow-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoped-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoping ^7.7.4 development
  • @babel/plugin-transform-classes ^7.7.4 development
  • @babel/plugin-transform-computed-properties ^7.7.4 development
  • @babel/plugin-transform-destructuring ^7.7.4 development
  • @babel/plugin-transform-exponentiation-operator ^7.7.4 development
  • @babel/plugin-transform-literals ^7.7.4 development
  • @babel/plugin-transform-member-expression-literals ^7.7.4 development
  • @babel/plugin-transform-parameters ^7.7.7 development
  • @babel/plugin-transform-property-literals ^7.7.4 development
  • @babel/plugin-transform-shorthand-properties ^7.7.4 development
  • @babel/plugin-transform-spread ^7.7.4 development
  • @babel/plugin-transform-template-literals ^7.7.4 development
  • babel-loader ^8.0.6 development
  • babel-plugin-transform-es2015-modules-simple-commonjs ~0.3.0 development
  • babel-plugin-transform-for-of-as-array ^1.1.1 development
  • es-observable git+https://github.com/tc39/proposal-observable.git#bf4d87144b6189e793593868e3c022eb51a7d292 development
  • eslint ^6.8.0 development
  • eslint-import-resolver-webpack ^0.12.0 development
  • eslint-plugin-import ^2.19.1 development
  • eslint-plugin-node ^10.0.0 development
  • eslint-plugin-optimize-regex ^1.1.7 development
  • eslint-plugin-qunit ^4.0.0 development
  • eslint-plugin-sonarjs ^0.5.0 development
  • eslint-plugin-unicorn ^15.0.0 development
  • grunt ^1.0.4 development
  • grunt-cli ^1.3.2 development
  • grunt-contrib-clean ^2.0.0 development
  • grunt-contrib-copy ^1.0.0 development
  • grunt-contrib-uglify ^4.0.1 development
  • grunt-karma ^3.0.2 development
  • grunt-webpack ^3.1.3 development
  • karma ^4.4.1 development
  • karma-chrome-launcher ^3.1.0 development
  • karma-phantomjs-launcher ~1.0.4 development
  • karma-qunit ^4.0.0 development
  • lerna ^3.19.0 development
  • moon-unit ^0.2.2 development
  • phantomjs-prebuilt ~2.1.16 development
  • promises-aplus-tests ^2.1.2 development
  • puppeteer ~2.0.0 development
  • qunit ~2.9.3 development
  • webpack ^4.41.4 development
docs/data_pipelines/vaccine_data_files/libs/core-js-2.5.3/package.json npm
  • @babel/cli ^7.7.7 development
  • @babel/core ^7.7.7 development
  • @babel/plugin-proposal-nullish-coalescing-operator ^7.7.4 development
  • @babel/plugin-proposal-optional-catch-binding ^7.7.4 development
  • @babel/plugin-proposal-optional-chaining ^7.7.5 development
  • @babel/plugin-transform-arrow-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoped-functions ^7.7.4 development
  • @babel/plugin-transform-block-scoping ^7.7.4 development
  • @babel/plugin-transform-classes ^7.7.4 development
  • @babel/plugin-transform-computed-properties ^7.7.4 development
  • @babel/plugin-transform-destructuring ^7.7.4 development
  • @babel/plugin-transform-exponentiation-operator ^7.7.4 development
  • @babel/plugin-transform-literals ^7.7.4 development
  • @babel/plugin-transform-member-expression-literals ^7.7.4 development
  • @babel/plugin-transform-parameters ^7.7.7 development
  • @babel/plugin-transform-property-literals ^7.7.4 development
  • @babel/plugin-transform-shorthand-properties ^7.7.4 development
  • @babel/plugin-transform-spread ^7.7.4 development
  • @babel/plugin-transform-template-literals ^7.7.4 development
  • babel-loader ^8.0.6 development
  • babel-plugin-transform-es2015-modules-simple-commonjs ~0.3.0 development
  • babel-plugin-transform-for-of-as-array ^1.1.1 development
  • es-observable git+https://github.com/tc39/proposal-observable.git#bf4d87144b6189e793593868e3c022eb51a7d292 development
  • eslint ^6.8.0 development
  • eslint-import-resolver-webpack ^0.12.0 development
  • eslint-plugin-import ^2.19.1 development
  • eslint-plugin-node ^10.0.0 development
  • eslint-plugin-optimize-regex ^1.1.7 development
  • eslint-plugin-qunit ^4.0.0 development
  • eslint-plugin-sonarjs ^0.5.0 development
  • eslint-plugin-unicorn ^15.0.0 development
  • grunt ^1.0.4 development
  • grunt-cli ^1.3.2 development
  • grunt-contrib-clean ^2.0.0 development
  • grunt-contrib-copy ^1.0.0 development
  • grunt-contrib-uglify ^4.0.1 development
  • grunt-karma ^3.0.2 development
  • grunt-webpack ^3.1.3 development
  • karma ^4.4.1 development
  • karma-chrome-launcher ^3.1.0 development
  • karma-phantomjs-launcher ~1.0.4 development
  • karma-qunit ^4.0.0 development
  • lerna ^3.19.0 development
  • moon-unit ^0.2.2 development
  • phantomjs-prebuilt ~2.1.16 development
  • promises-aplus-tests ^2.1.2 development
  • puppeteer ~2.0.0 development
  • qunit ~2.9.3 development
  • webpack ^4.41.4 development