Skip to content

Commit

Permalink
fix: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AVVS committed Nov 6, 2020
1 parent e0cd955 commit 5d33dd2
Show file tree
Hide file tree
Showing 6 changed files with 1,129 additions and 967 deletions.
2 changes: 1 addition & 1 deletion .mdeprc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"node": "12.14.1",
"node": "14.15",
"auto_compose": true,
"services": [
"rabbitmq"
Expand Down
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,50 +27,50 @@
},
"homepage": "https://github.com/microfleet/transport-amqp#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-strict-mode": "^7.10.1",
"@babel/register": "^7.10.1",
"@makeomatic/deploy": "^10.2.1",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-strict-mode": "^7.12.1",
"@babel/register": "^7.12.1",
"@makeomatic/deploy": "^10.3.2",
"babel-plugin-istanbul": "^6.0.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"codecov": "^3.7.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-makeomatic": "^5.0.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-mocha": "^7.0.1",
"eslint": "^7.12.1",
"eslint-config-makeomatic": "^5.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^20.1.0",
"jaeger-client": "^3.18.0",
"eslint-plugin-unicorn": "^23.0.0",
"jaeger-client": "^3.18.1",
"microtime": "^3.0.0",
"mocha": "^8.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2"
"sinon": "^9.2.1"
},
"peerDependencies": {
"common-errors": "~1.x.x",
"stdout-stream": "~1.x.x"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@microfleet/amqp-coffee": "^1.3.1",
"bluebird": "^3.7.2",
"common-errors": "^1.0.5",
"debug": "^4.1.1",
"eventemitter3": "^4.0.4",
"common-errors": "^1.2.0",
"debug": "^4.2.0",
"eventemitter3": "^4.0.7",
"flatstr": "^1.0.12",
"hashlru": "^2.3.0",
"is": "^3.3.0",
"joi": "^17.3.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.15",
"lodash": "^4.17.20",
"object-hash": "^2.0.3",
"opentracing": "^0.14.4",
"pino": "^6.3.2",
"sonic-boom": "^1.0.1",
"uuid": "^8.1.0"
"opentracing": "^0.14.5",
"pino": "^6.7.0",
"sonic-boom": "^1.3.0",
"uuid": "^8.3.1"
},
"files": [
"lib/",
Expand Down
2 changes: 1 addition & 1 deletion src/schema.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const baseJoi = require('@hapi/joi');
const baseJoi = require('joi');
const recoverySchema = require('./utils/recovery').schema;

const Joi = baseJoi.extend((joi) => ({
Expand Down
2 changes: 1 addition & 1 deletion src/utils/recovery.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const Joi = require('@hapi/joi');
const Joi = require('joi');

/**
* Settings confirm to [policy: string] : settings schema
Expand Down
1 change: 0 additions & 1 deletion src/utils/transport.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ amqp.prototype.consumeAsync = async function consumeAsync(...args) {
return consumer;
};


module.exports = amqp;
Loading

0 comments on commit 5d33dd2

Please sign in to comment.