crapifyme
Version:
Ultra-fast developer productivity CLI tools - remove comments, logs, and more
27 lines • 1.1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OutputFormat = exports.AnalysisType = exports.DependencyType = void 0;
var DependencyType;
(function (DependencyType) {
DependencyType["PRODUCTION"] = "production";
DependencyType["DEVELOPMENT"] = "development";
DependencyType["PEER"] = "peer";
DependencyType["OPTIONAL"] = "optional";
})(DependencyType || (exports.DependencyType = DependencyType = {}));
var AnalysisType;
(function (AnalysisType) {
AnalysisType["SECURITY"] = "security";
AnalysisType["SIZE"] = "size";
AnalysisType["OUTDATED"] = "outdated";
AnalysisType["UNUSED"] = "unused";
AnalysisType["DUPLICATES"] = "duplicates";
AnalysisType["FULL"] = "full";
})(AnalysisType || (exports.AnalysisType = AnalysisType = {}));
var OutputFormat;
(function (OutputFormat) {
OutputFormat["TABLE"] = "table";
OutputFormat["JSON"] = "json";
OutputFormat["TREE"] = "tree";
OutputFormat["SUMMARY"] = "summary";
})(OutputFormat || (exports.OutputFormat = OutputFormat = {}));
//# sourceMappingURL=types.js.map