mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-28 03:07:13 +08:00
bumped deps
This commit is contained in:
parent
1f4e97dbe9
commit
718dad91c5
2 changed files with 35 additions and 26 deletions
|
@ -49,13 +49,19 @@ class POP3Server extends EventEmitter {
|
|||
// ignore, should not happen
|
||||
}
|
||||
if (this.options.secured) {
|
||||
return this.connect(socket, socketOptions);
|
||||
return this.connect(
|
||||
socket,
|
||||
socketOptions
|
||||
);
|
||||
}
|
||||
this._upgrade(socket, (err, tlsSocket) => {
|
||||
if (err) {
|
||||
return this._onError(err);
|
||||
}
|
||||
this.connect(tlsSocket, socketOptions);
|
||||
this.connect(
|
||||
tlsSocket,
|
||||
socketOptions
|
||||
);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@ -65,7 +71,10 @@ class POP3Server extends EventEmitter {
|
|||
if (err) {
|
||||
// ignore, should not happen
|
||||
}
|
||||
this.connect(socket, socketOptions);
|
||||
this.connect(
|
||||
socket,
|
||||
socketOptions
|
||||
);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
46
package.json
46
package.json
|
@ -16,21 +16,21 @@
|
|||
"author": "Andris Reinman",
|
||||
"license": "EUPL-1.1+",
|
||||
"devDependencies": {
|
||||
"apidoc": "^0.17.6",
|
||||
"browserbox": "^0.9.1",
|
||||
"chai": "^4.1.2",
|
||||
"eslint-config-nodemailer": "^1.2.0",
|
||||
"grunt": "^1.0.3",
|
||||
"grunt-cli": "^1.2.0",
|
||||
"grunt-eslint": "^21.0.0",
|
||||
"grunt-mocha-test": "^0.13.3",
|
||||
"grunt-shell-spawn": "^0.3.10",
|
||||
"grunt-wait": "^0.1.0",
|
||||
"icedfrisby": "^1.5.0",
|
||||
"mailparser": "^2.2.0",
|
||||
"markdown-toc": "^1.2.0",
|
||||
"mocha": "^5.2.0",
|
||||
"request": "^2.87.0"
|
||||
"apidoc": "0.17.6",
|
||||
"browserbox": "0.9.1",
|
||||
"chai": "4.1.2",
|
||||
"eslint-config-nodemailer": "1.2.0",
|
||||
"grunt": "1.0.3",
|
||||
"grunt-cli": "1.2.0",
|
||||
"grunt-eslint": "21.0.0",
|
||||
"grunt-mocha-test": "0.13.3",
|
||||
"grunt-shell-spawn": "0.3.10",
|
||||
"grunt-wait": "0.1.0",
|
||||
"icedfrisby": "1.5.0",
|
||||
"mailparser": "2.3.2",
|
||||
"markdown-toc": "1.2.0",
|
||||
"mocha": "5.2.0",
|
||||
"request": "2.87.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"bcryptjs": "2.4.3",
|
||||
|
@ -43,24 +43,24 @@
|
|||
"iconv-lite": "0.4.23",
|
||||
"ioredfour": "1.0.2-ioredis",
|
||||
"ioredis": "3.2.2",
|
||||
"isemail": "^3.1.2",
|
||||
"isemail": "3.1.3",
|
||||
"joi": "13.4.0",
|
||||
"js-yaml": "3.12.0",
|
||||
"key-fingerprint": "1.1.0",
|
||||
"libbase64": "1.0.2",
|
||||
"libmime": "4.0.0",
|
||||
"libbase64": "1.0.3",
|
||||
"libmime": "4.0.1",
|
||||
"libqp": "1.1.0",
|
||||
"linkify-it": "2.0.3",
|
||||
"mailsplit": "4.2.0",
|
||||
"mailsplit": "4.2.3",
|
||||
"mobileconfig": "2.1.0",
|
||||
"mongo-cursor-pagination-node6": "5.0.0",
|
||||
"mongodb": "3.0.10",
|
||||
"mongodb": "3.1.1",
|
||||
"mongodb-extended-json": "1.10.0",
|
||||
"node-forge": "0.7.5",
|
||||
"nodemailer": "4.6.7",
|
||||
"npmlog": "4.1.2",
|
||||
"openpgp": "3.0.11",
|
||||
"pem": "^1.12.5",
|
||||
"openpgp": "3.1.0",
|
||||
"pem": "1.12.5",
|
||||
"qrcode": "1.2.0",
|
||||
"restify": "7.2.1",
|
||||
"restify-logger": "2.0.1",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"tlds": "1.203.1",
|
||||
"u2f": "0.1.3",
|
||||
"utf7": "1.0.2",
|
||||
"uuid": "3.3.0",
|
||||
"uuid": "3.3.2",
|
||||
"wild-config": "1.3.6"
|
||||
},
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in a new issue