Skip to content

Commit

Permalink
Add owner to build packageObject output
Browse files Browse the repository at this point in the history
  • Loading branch information
confused-Techie committed Jan 9, 2024
1 parent b7bd60b commit 42fe1e5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/PackageObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ class PackageObject {
// And should be considered our master reference for the Package Object Short Data Structure
let obj = {
name: this.name,
owner: this.owner,
repository: this.repository,
downloads: this.downloads,
stargazers_count: this.stargazers_count,
Expand All @@ -233,6 +234,7 @@ class PackageObject {
// Should be considered the master Package Object Full data structure
let obj = {
name: this.name,
owner: this.owner,
repository: this.repository,
downloads: this.downloads,
stargazers_count: this.stargazers_count,
Expand Down

0 comments on commit 42fe1e5

Please sign in to comment.