stryker-api
Advanced tools
Comparing version 0.4.2 to 0.5.0-0
@@ -0,0 +0,0 @@ { |
@@ -0,0 +0,0 @@ <a name="0.4.2"></a> |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Config_1 = require("./src/config/Config"); | ||
@@ -3,0 +4,0 @@ exports.Config = Config_1.default; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Factory_1 = require("./src/core/Factory"); | ||
exports.Factory = Factory_1.default; | ||
//# sourceMappingURL=core.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var MutatorFactory_1 = require("./src/mutant/MutatorFactory"); | ||
exports.MutatorFactory = MutatorFactory_1.default; | ||
//# sourceMappingURL=mutant.js.map |
{ | ||
"name": "stryker-api", | ||
"version": "0.4.2", | ||
"version": "0.5.0-0", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
@@ -8,3 +8,4 @@ "scripts": { | ||
"tsc:w": "tsc -w", | ||
"preversion": "grunt" | ||
"preversion": "grunt", | ||
"build": "grunt build" | ||
}, | ||
@@ -60,3 +61,6 @@ "repository": { | ||
"typescript": "^2.1.4" | ||
}, | ||
"dependencies": { | ||
"tslib": "^1.6.0" | ||
} | ||
} |
@@ -0,0 +0,0 @@ [![Build Status](https://travis-ci.org/stryker-mutator/stryker.svg?branch=master)](https://travis-ci.org/stryker-mutator/stryker-api) |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var MutantStatus_1 = require("./src/report/MutantStatus"); | ||
@@ -3,0 +4,0 @@ exports.MutantStatus = MutantStatus_1.default; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var Config = (function () { | ||
@@ -23,4 +24,3 @@ function Config() { | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = Config; | ||
//# sourceMappingURL=Config.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=ConfigWriter.js.map |
"use strict"; | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var core_1 = require("../../core"); | ||
@@ -29,4 +35,3 @@ var ConfigWriterFactory; | ||
})(ConfigWriterFactory || (ConfigWriterFactory = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = ConfigWriterFactory; | ||
//# sourceMappingURL=ConfigWriterFactory.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
@@ -53,4 +54,3 @@ * Represents a Factory to which items can register themselves and which can be used to create instances of said items. | ||
}()); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = Factory; | ||
//# sourceMappingURL=Factory.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=InputFile.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=InputFileDescriptor.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Location.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Position.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Range.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=StrykerOptions.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Mutator.js.map |
"use strict"; | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var core_1 = require("../../core"); | ||
@@ -29,4 +35,3 @@ var MutatorFactory; | ||
})(MutatorFactory || (MutatorFactory = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = MutatorFactory; | ||
//# sourceMappingURL=MutatorFactory.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=MatchedMutant.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=MutantResult.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var MutantStatus; | ||
@@ -25,4 +26,3 @@ (function (MutantStatus) { | ||
})(MutantStatus || (MutantStatus = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = MutantStatus; | ||
//# sourceMappingURL=MutantStatus.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Reporter.js.map |
"use strict"; | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var core_1 = require("../../core"); | ||
@@ -37,4 +43,3 @@ var ReporterFactory; | ||
})(ReporterFactory || (ReporterFactory = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = ReporterFactory; | ||
//# sourceMappingURL=ReporterFactory.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=SourceFile.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestFramework.js.map |
"use strict"; | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var core_1 = require("../../core"); | ||
@@ -29,4 +35,3 @@ var TestFrameworkFactory; | ||
})(TestFrameworkFactory || (TestFrameworkFactory = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = TestFrameworkFactory; | ||
//# sourceMappingURL=TestFrameworkFactory.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestFrameworkSettings.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=Coverage.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=RunnerOptions.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=RunOptions.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=RunResult.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var RunStatus; | ||
@@ -17,4 +18,3 @@ (function (RunStatus) { | ||
})(RunStatus || (RunStatus = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = RunStatus; | ||
//# sourceMappingURL=RunStatus.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestResult.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
//# sourceMappingURL=TestRunner.js.map |
"use strict"; | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var core_1 = require("../../core"); | ||
@@ -37,4 +43,3 @@ var TestRunnerFactory; | ||
})(TestRunnerFactory || (TestRunnerFactory = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = TestRunnerFactory; | ||
//# sourceMappingURL=TestRunnerFactory.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
@@ -20,4 +21,3 @@ * Indicates what the result of a single test was. | ||
})(TestStatus || (TestStatus = {})); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = TestStatus; | ||
//# sourceMappingURL=TestStatus.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var TestFrameworkFactory_1 = require("./src/test_framework/TestFrameworkFactory"); | ||
exports.TestFrameworkFactory = TestFrameworkFactory_1.default; | ||
//# sourceMappingURL=test_framework.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var TestStatus_1 = require("./src/test_runner/TestStatus"); | ||
@@ -3,0 +4,0 @@ exports.TestStatus = TestStatus_1.default; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
0
72581
1
123
1210
+ Addedtslib@^1.6.0
+ Addedtslib@1.14.1(transitive)