From 1cfff52c5c9e9974354c2600077cf54c1012899f Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Wed, 11 Mar 2020 01:31:29 -0700 Subject: [PATCH] Fixed package.json --- meshcentral.js | 2 +- package.json | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/meshcentral.js b/meshcentral.js index 966aab21..e65fbfa6 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -2424,7 +2424,7 @@ function mainStart() { InstallModules(modules, function () { meshserver = CreateMeshCentralServer(config, args); meshserver.Start(); }); // On exit, also terminate the child process if applicable - process.on("exit", function () { if (childProcess) { childProcess.kill(); childProcess = null; } }); + process.on('exit', function () { if (childProcess) { childProcess.kill(); childProcess = null; } }); // If our parent exits, we also exit if (args.launch) { diff --git a/package.json b/package.json index 11caedb7..f721ce2d 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,6 @@ ], "dependencies": { "archiver": "^3.0.0", - "archiver-zip-encrypted": "^1.0.8", "body-parser": "^1.19.0", "cbor": "^4.1.5", "compression": "^1.7.4", @@ -38,20 +37,15 @@ "express": "^4.17.0", "express-handlebars": "^3.1.0", "express-ws": "^4.0.0", - "html-minifier": "^4.0.0", "ipcheck": "^0.1.0", "jsdom": "^16.2.1", - "minify-js": "0.0.4", "minimist": "^1.2.0", "multiparty": "^4.2.1", "nedb": "^1.8.0", "node-forge": "^0.8.4", - "node-windows": "^1.0.0-beta.1", - "otplib": "^10.0.0", "ws": "^6.2.1", "xmldom": "^0.1.27", - "yauzl": "^2.10.0", - "yubikeyotp": "^0.2.0" + "yauzl": "^2.10.0" }, "devDependencies": {}, "repository": {