Skip to content

Commit

Permalink
Correct electron-chrome-extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinvanrijn committed Oct 3, 2023
1 parent 04b21dd commit 27fc1df
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,22 @@ function writeReadme() {
}

// License corrections
if(pkg.name === 'npm') {
if(pkg.name === 'npm') { // npm
d[k].license = 'npm license'
}
else if(d[k].version === '[email protected]') {
else if(pkg.name === 'electron-chrome-extensions') { // electron-chrome-extensions
d[k].license = 'GPL-3.0'
}
else if(d[k].version === '[email protected]') { // bin-links
d[k].license = 'ISC'
}
else if(d[k].version === '[email protected]') {
else if(d[k].version === '[email protected]') { // cyclist
d[k].license = 'MIT'
}
else if(d[k].version === '[email protected]') {
else if(d[k].version === '[email protected]') { // gentle-fs
d[k].license = 'npm license'
}
else if(d[k].version === '[email protected]') {
else if(d[k].version === '[email protected]') { // npm-lifecycle
d[k].license = 'npm license'
}

Expand Down Expand Up @@ -232,6 +235,9 @@ function writeReadme() {
else if(d[k].source === 'https://github.com/substack/node-editor') { // editor
d[k].source = 'https://www.npmjs.com/package/editor?activeTab=code'
}
else if(pkg.name === 'electron-chrome-extensions') { // electron-chrome-extensions
d[k].source = 'https://github.com/samuelmaddock/electron-browser-shell/tree/master/packages/electron-chrome-extensions'
}
else if(d[k].source === 'https://github.com/Gozala/events') { // events
d[k].source = 'https://github.com/browserify/events'
}
Expand Down

0 comments on commit 27fc1df

Please sign in to comment.