Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@stryker-mutator/api

Package Overview
Dependencies
Maintainers
4
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stryker-mutator/api - npm Package Compare versions

Comparing version 4.4.1 to 4.5.0

dist/schema/stryker-core.json

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

# [4.5.0](https://github.com/stryker-mutator/stryker/compare/v4.4.1...v4.5.0) (2021-03-06)
### Features
* **package:** restructure package internals ([#2714](https://github.com/stryker-mutator/stryker/issues/2714)) ([e1711d2](https://github.com/stryker-mutator/stryker/commit/e1711d28f25e8ee7cbdf025adecb3234ee0515a6))
## [4.4.1](https://github.com/stryker-mutator/stryker/compare/v4.4.0...v4.4.1) (2021-01-27)

@@ -8,0 +19,0 @@

5

check.d.ts

@@ -1,4 +0,1 @@

export * from './src/check/checker';
export * from './src/check/check-result';
export * from './src/check/check-status';
//# sourceMappingURL=check.d.ts.map
export * from './dist/src/check';

8

check.js

@@ -1,7 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./src/check/checker"), exports);
tslib_1.__exportStar(require("./src/check/check-result"), exports);
tslib_1.__exportStar(require("./src/check/check-status"), exports);
//# sourceMappingURL=check.js.map
module.exports = require("./dist/src/check")

@@ -1,12 +0,1 @@

export { default as File } from './src/core/file';
export { default as Position } from './src/core/position';
export { default as Location } from './src/core/location';
export { default as Range } from './src/core/range';
export { default as Mutant } from './src/core/mutant';
export * from './src-generated/stryker-core';
export * from './src/core/report-types';
export * from './src/core/stryker-options-schema';
export * from './src/core/partial-stryker-options';
export * from './src/core/instrument';
export * from './src/core/mutant-coverage';
//# sourceMappingURL=core.d.ts.map
export * from './dist/src/core';

@@ -1,13 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.File = void 0;
const tslib_1 = require("tslib");
var file_1 = require("./src/core/file");
Object.defineProperty(exports, "File", { enumerable: true, get: function () { return file_1.default; } });
tslib_1.__exportStar(require("./src-generated/stryker-core"), exports);
tslib_1.__exportStar(require("./src/core/report-types"), exports);
tslib_1.__exportStar(require("./src/core/stryker-options-schema"), exports);
tslib_1.__exportStar(require("./src/core/partial-stryker-options"), exports);
tslib_1.__exportStar(require("./src/core/instrument"), exports);
tslib_1.__exportStar(require("./src/core/mutant-coverage"), exports);
//# sourceMappingURL=core.js.map
module.exports = require("./dist/src/core")

@@ -1,3 +0,1 @@

export { default as Logger } from './src/logging/logger';
export { default as LoggerFactoryMethod } from './src/logging/logger-factory-method';
//# sourceMappingURL=logging.d.ts.map
export * from './dist/src/logging';

@@ -1,3 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=logging.js.map
module.exports = require("./dist/src/logging")
{
"name": "@stryker-mutator/api",
"version": "4.4.1",
"version": "4.5.0",
"description": "The api for the extendable JavaScript mutation testing framework Stryker",

@@ -12,3 +12,3 @@ "repository": {

"test": "nyc npm run test:unit",
"test:unit": "mocha \"test/unit/**/*.js\""
"test:unit": "mocha \"dist/test/unit/**/*.js\""
},

@@ -50,3 +50,3 @@ "keywords": [

},
"gitHead": "5adec32ab680655d9c651c99a9a164410b6915ae"
"gitHead": "10bf19e70574959bda3b392c2bf181137764b90e"
}

@@ -1,7 +0,1 @@

export * from './src/plugin/contexts';
export * from './src/plugin/plugins';
export * from './src/plugin/plugin-kind';
export * from './src/plugin/tokens';
export * from './src/plugin/scope';
export { Injectable, Injector, InjectionToken, CorrespondingType, Disposable } from 'typed-inject';
//# sourceMappingURL=plugin.d.ts.map
export * from './dist/src/plugin';

@@ -1,9 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./src/plugin/contexts"), exports);
tslib_1.__exportStar(require("./src/plugin/plugins"), exports);
tslib_1.__exportStar(require("./src/plugin/plugin-kind"), exports);
tslib_1.__exportStar(require("./src/plugin/tokens"), exports);
tslib_1.__exportStar(require("./src/plugin/scope"), exports);
//# sourceMappingURL=plugin.js.map
module.exports = require("./dist/src/plugin")

@@ -1,13 +0,1 @@

import * as mutationTestReportSchema from 'mutation-testing-report-schema';
export { default as Reporter } from './src/report/reporter';
export * from './src/report/mutant-result';
export { default as MutantStatus } from './src/report/mutant-status';
export { default as SourceFile } from './src/report/source-file';
export { default as MatchedMutant } from './src/report/matched-mutant';
export {
/**
* Types exported directly from mutation-testing-schema
* @see https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/mutation-testing-report-schema
*/
mutationTestReportSchema, };
//# sourceMappingURL=report.d.ts.map
export * from './dist/src/report';

@@ -1,10 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.mutationTestReportSchema = exports.MutantStatus = void 0;
const tslib_1 = require("tslib");
const mutationTestReportSchema = require("mutation-testing-report-schema");
exports.mutationTestReportSchema = mutationTestReportSchema;
tslib_1.__exportStar(require("./src/report/mutant-result"), exports);
var mutant_status_1 = require("./src/report/mutant-status");
Object.defineProperty(exports, "MutantStatus", { enumerable: true, get: function () { return mutant_status_1.default; } });
//# sourceMappingURL=report.js.map
module.exports = require("./dist/src/report")

@@ -1,9 +0,1 @@

export * from './src/test_runner/test-result';
export * from './src/test_runner/test-runner';
export * from './src/test_runner/test-status';
export * from './src/test_runner/dry-run-result';
export * from './src/test_runner/run-options';
export * from './src/test_runner/mutant-run-result';
export * from './src/test_runner/dry-run-status';
export * from './src/test_runner/run-result-helpers';
//# sourceMappingURL=test-runner.d.ts.map
export * from './dist/src/test-runner';

@@ -1,12 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./src/test_runner/test-result"), exports);
tslib_1.__exportStar(require("./src/test_runner/test-runner"), exports);
tslib_1.__exportStar(require("./src/test_runner/test-status"), exports);
tslib_1.__exportStar(require("./src/test_runner/dry-run-result"), exports);
tslib_1.__exportStar(require("./src/test_runner/run-options"), exports);
tslib_1.__exportStar(require("./src/test_runner/mutant-run-result"), exports);
tslib_1.__exportStar(require("./src/test_runner/dry-run-status"), exports);
tslib_1.__exportStar(require("./src/test_runner/run-result-helpers"), exports);
//# sourceMappingURL=test-runner.js.map
module.exports = require("./dist/src/test-runner")
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc