Lines Matching full:bugs
3 class Bugs extends PackageUrlCmd { class
4 static description = 'Report bugs for a package in a web browser'
5 static name = 'bugs'
8 if (mani.bugs) {
9 if (typeof mani.bugs === 'string') {
10 return mani.bugs
13 if (typeof mani.bugs === 'object' && mani.bugs.url) {
14 return mani.bugs.url
17 if (typeof mani.bugs === 'object' && mani.bugs.email) {
18 return `mailto:${mani.bugs.email}`
24 const infoUrl = info?.bugs()
34 module.exports = Bugs