15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
/*
|
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
|
* This file is part of standard which is released under MIT.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@scode.ovh>, September 2020
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const drone = require ('./drone');
|
|
const jasmine = require ('./jasmine');
|
|
const stryker = require ('./stryker');
|
|
|
|
module.exports = { drone, jasmine, stryker };
|