diff --git a/lib/server.js b/lib/server.js index 89f65a6..65f3916 100644 --- a/lib/server.js +++ b/lib/server.js @@ -169,7 +169,7 @@ Server.prototype.start = function () { var logStream = null if (this.config.type === 'linux') { logStream = fs.createWriteStream(this.logs.generateLogFilePath(), { - 'flags': 'a' + flags: 'a' }) } diff --git a/package.json b/package.json index aed4500..b065c93 100644 --- a/package.json +++ b/package.json @@ -7,13 +7,16 @@ "scripts": { "install-windows-service": "winser -i -a -c", "uninstall-windows-service": "winser -r -x -c", - "lint": "standard --verbose *.js lib/**/*.js routes/**/*.js test/**/*.js", + "lint": "standard --verbose", "start": "node app.js", "test": "node node_modules/mocha/bin/mocha --recursive" }, "standard": { "env": [ "mocha" + ], + "ignore": [ + "public/" ] }, "dependencies": { @@ -54,7 +57,7 @@ "devDependencies": { "mocha": "~3.2.0", "should": "~13.0.1", - "standard": "^12.0.1", + "standard": "^14.3.1", "timekeeper": "0.0.5" } }