(pkg: string)
| 544 | } |
| 545 | |
| 546 | export async function accessListCollaborators(pkg: string): Promise<NpmExecResult> { |
| 547 | validatePackageName(pkg) |
| 548 | return execNpm(['access', 'list', 'collaborators', pkg, '--json'], { silent: true }) |
| 549 | } |
| 550 | |
| 551 | /** |
| 552 | * Lists all packages that a user has access to publish. |
no test coverage detected