When looking at the json response of any npm package, such as jQuery for example, http://registry.npmjs.org/jquery
, you may come across a dictionary called users
. This dictionary contains usernames as keys and boolean values as the corresponding values.
"users": {
"dodo": true,
"fgribreau": true,
"parroit": true,
"cedx": true,
"bendiken": true,
"funroll": true
}
I am curious about this user dictionary. I tried to search for references but couldn't find anything. Can anyone explain its purpose or origin?
Thank You.