mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-09-06 21:24:37 +08:00
21 lines
462 B
JavaScript
21 lines
462 B
JavaScript
module.exports = {
|
|
upgrade: true,
|
|
reject: [
|
|
// mongodb 5.x driver does not support callbacks, only promises
|
|
'mongodb',
|
|
|
|
// no support for Node 16
|
|
'undici',
|
|
|
|
// esm only
|
|
'chai',
|
|
'unixcrypt',
|
|
|
|
// api changes, fix later
|
|
'eslint',
|
|
'grunt-eslint',
|
|
|
|
// temporary lock to v5, openpgp v6 is "module" by default, but should be backwards compatible
|
|
'openpgp'
|
|
]
|
|
};
|