Skip to content

Commit

Permalink
Updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Feb 14, 2020
1 parent 6a93f70 commit 624c6b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion lib.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
'use strict'

/* eslint no-prototype-builtins: 0 */

const pump = require('pump')
const split = require('split2')
const Writable = require('readable-stream').Writable
Expand Down Expand Up @@ -47,7 +51,7 @@ function pinoElasticSearch (opts) {
const client = new Client({ node: opts.node })

const esVersion = Number(opts['es-version']) || 7
const useEcs = !!opts['ecs']
const useEcs = !!opts.ecs
const index = opts.index || 'pino'
const buildIndexName = typeof index === 'function' ? index : null
const type = opts.type || 'log'
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@
"license": "MIT",
"devDependencies": {
"is-elasticsearch-running": "^0.1.0",
"pino": "^5.13.5",
"pino": "^5.16.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"standard": "^12.0.1",
"tap": "^14.7.1"
"standard": "^14.0.0",
"tap": "^14.10.6"
},
"dependencies": {
"@elastic/elasticsearch": "^7.4.0",
"@elastic/elasticsearch": "^7.6.0",
"fast-json-parse": "^1.0.3",
"minimist": "^1.2.0",
"pino-to-ecs": "^0.2.0",
"pump": "^3.0.0",
"readable-stream": "^3.4.0",
"readable-stream": "^3.6.0",
"split2": "^3.1.1"
},
"repository": {
Expand Down

0 comments on commit 624c6b4

Please sign in to comment.