in src/axe-tool-property-provider.ts [7:26]
export function getAxeToolProperties(
environmentData: EnvironmentData,
): Sarif.ToolComponent {
const version = environmentData.axeVersion;
return {
name: 'axe-core',
fullName: `axe for Web v${version}`,
shortDescription: {
text: 'An open source accessibility rules library for automated testing.',
},
version: version,
semanticVersion: version,
informationUri: 'https://www.deque.com/axe/axe-for-web/',
downloadUri: `https://www.npmjs.com/package/axe-core/v/${version}`,
properties: {
'microsoft/qualityDomain': 'Accessibility',
},
supportedTaxonomies: [getWcagTaxonomyReference()],
};
}