From d69a1c2028f52a9525f1c5a3ce1851e012b5f1ce Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Sun, 22 Jul 2018 12:06:44 +0000 Subject: [PATCH] replace bunyan with bunyan-lite --- lib/logger.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/logger.js b/lib/logger.js index 7ae8c07..839b7d6 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -1,7 +1,7 @@ 'use strict'; var _ = require('lodash'); -var bunyan = require('bunyan'); +var bunyan = require('bunyan-lite'); //Get the config var config = require('./config'); diff --git a/package.json b/package.json index 09e7fc1..689126b 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ }, "homepage": "https://github.com/TheThing/spserver", "dependencies": { - "bunyan": "^1.3.3", + "bunyan-lite": "^1.0.0", "lodash": "^4.17.2", "nconf": "^0.8.4", "node-static": "^0.7.6"