wildduck/.ncurc.js
NickOvt 9f704f7c5d
fix(api-generation): api generation package now uses WIldduck Joi and does not depend on fixed joi version ZMS-126 (#639)
* restifyapi generate transformed into a class and uses the passed Joi and dirname

* remove joi dependency from .ncurc.js
2024-02-29 10:07:16 +02:00

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'
]
};