wildduck/.ncurc.js

22 lines
462 B
JavaScript
Raw Permalink Normal View History

2021-11-16 19:52:38 +08:00
module.exports = {
upgrade: true,
reject: [
// mongodb 5.x driver does not support callbacks, only promises
'mongodb',
// no support for Node 16
2024-01-02 17:39:27 +08:00
'undici',
2024-02-26 15:42:39 +08:00
// esm only
'chai',
2024-04-19 18:25:22 +08:00
'unixcrypt',
// api changes, fix later
'eslint',
'grunt-eslint',
// temporary lock to v5, openpgp v6 is "module" by default, but should be backwards compatible
'openpgp'
2021-11-16 19:52:38 +08:00
]
};