[TASK] composer.json is only stored once
The ext_emconf.php is prefilled with all the author data but not the composer.json
The author data is indeed stored, but only at the first time. If there is already an existing composer.json file (because you already saved it) and then you add some authors, the authors will not be stored inside the composer.json because it is stored only once. See https://github.com/FriendsOfTYPO3/extension_builder/blob/1f0fb57cd325eb74df5ba7ba0b21db3649dcd4b3/Classes/Service/FileGenerator.php#L1062
We could remove the line where it is checked, if the composer.json is already there. But it could lead into some other problems. Maybe it is safer, to only store it once, instead of overriding it again and again. Maybe the composer package name could be changed while overriding and then the extension is not installed any more.