New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

mutation-testing-report-schema

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mutation-testing-report-schema

The json schema for a mutation testing report.

Source
npmnpm
Version
3.8.0
Version published
Weekly downloads
2.4M
59.37%
Maintainers
2
Weekly downloads
 
Created
Source

Build Status

Mutation testing elements schema

The json schema for mutation testing elements.

The schema can be found here.

JavaScript

Install it with npm like this:

$ npm i mutation-testing-report-schema

Use it from typescript or js (with babel)

import { schema } from 'mutation-testing-elements-schema';

For example, use AJV:

const schemaValidator = new Ajv();
schemaValidator.addSchema(schema, 'mutation-testing-report-schema');
schemaValidator.validate('mutation-testing-report-schema', {
  /*.. report as json ...*/
});

Other languages

Download the schema using https://www.unpkg.com/mutation-testing-report-schema@VERSION/dist/src/mutation-testing-report-schema.json

For the current version, see package.json.

FAQs

Package last updated on 05 Jun 2026

Related posts