mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-27 02:10:52 +08:00
9f704f7c5d
* restifyapi generate transformed into a class and uses the passed Joi and dirname * remove joi dependency from .ncurc.js
14 lines
262 B
JavaScript
14 lines
262 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'
|
|
]
|
|
};
|