Seems that the list of categories belongs with the services, while the support code belongs with base service. Ref #2832
22 lines
730 B
JavaScript
22 lines
730 B
JavaScript
'use strict'
|
|
|
|
module.exports = [
|
|
{ id: 'build', name: 'Build' },
|
|
{ id: 'coverage', name: 'Code Coverage' },
|
|
{ id: 'analysis', name: 'Analysis' },
|
|
{ id: 'chat', name: 'Chat' },
|
|
{ id: 'dependencies', name: 'Dependencies' },
|
|
{ id: 'size', name: 'Size' },
|
|
{ id: 'downloads', name: 'Downloads' },
|
|
{ id: 'funding', name: 'Funding' },
|
|
{ id: 'issue-tracking', name: 'Issue Tracking' },
|
|
{ id: 'license', name: 'License' },
|
|
{ id: 'rating', name: 'Rating' },
|
|
{ id: 'social', name: 'Social' },
|
|
{ id: 'version', name: 'Version' },
|
|
{ id: 'platform-support', name: 'Platform & Version Support' },
|
|
{ id: 'monitoring', name: 'Monitoring' },
|
|
{ id: 'activity', name: 'Activity' },
|
|
{ id: 'other', name: 'Other' },
|
|
]
|