lx-scan
Version:
License eXtension to find 5-tuples of all installed packages: name, version, project home page, license (e. g. Apache v2, BSD) and required notice. It includes a GUI to edit information for each package and to enter information if necessary.
18 lines (14 loc) • 537 B
JavaScript
var pa = require("path");
var os = require("os");
var settings = {
middlewarepath: "./lib/middleware/mware",
routerpath: "./lib/routes/routes",
resourcepath: "./lib/resources/resources",
iopath: "./lib/routes/io",
timeout: 7200000,
// Default location where scanned licenses are stored
homename: pa.join((process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE), "licenses"),
scannerpath: pa.normalize(pa.join(__dirname,"..","..","lx")),
tmpdir: pa.join(os.tmpdir(),"lxgui")
};
module.exports = settings;