Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Contributors from package.json don't show up on npm web site

Tags:

json

node.js

npm

I've added contributors array in package.json but the list don't show up on project page https://www.npmjs.com/package/jquery.terminal

  "author": {
    "name": "Jakub Jankiewicz",
    "email": "[email protected]",
    "url": "http://jcubic.pl/jakub-jankiewicz"
  },
  "contributors": [
    {"name":"Johan","url":"https://github.com/johanjordaan"},
    {"name":"Christopher John Ryan","email":"[email protected]","url":"https://github.com/ChrisJohnRyan"},
    {"name":"Zuo Qiyang","email":"[email protected]","url":"http://zuoqy.com"},
    {"name":"Sébastien Warin","url":"http://sebastien.warin.fr"},
    {"name":"Florian Schäfer","email":"[email protected]","url":"https://github.com/fschaefer"},
    {"name":"Tomasz Ducin","email":"[email protected]","url":"http://ducin.it"},
    {"name":"Hasan","url":"https://github.com/JuanPotato"},
    {"name":"Hraban Luyat","email":"[email protected]","url":"https://luyat.com"},
    {"name":"Mateusz Paprocki","email":"[email protected]","url":"https://github.com/mattpap"},
    {"name":"Martin v. Löwis","url":"https://github.com/loewis"},
    {"name":"Robert Wikman","email":"[email protected]","url":"flatwired.com"},
    {"name":"Steve Phillips","email":"[email protected]","url":"https://tryingtobeawesome.com/"},
    {"name":"coderaiser","email":"[email protected]","url":"http://coderaiser.github.io"},
    {"name":"Juraj Vitko","url":"https://github.com/youurayy"},
    {"name":"Yutong Luo","email":"[email protected]","url":"https://yutongluo.com"}
  ],

here is my package.json file

I've reported that on github but after two days with no response I decide to ask on SO.

like image 875
jcubic Avatar asked Sep 13 '25 06:09

jcubic


1 Answers

I think you mean the "Collaborators" box on the right sidebar of the module page. They do sound similar but they are different things. NPM doesn't use the contributors field to populate that list, but you can add people to it manually or through the CLI.

like image 71
ppajer Avatar answered Sep 14 '25 19:09

ppajer