StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
StackGenVis/frontend/node_modules/npm-check-updates/lib/package-managers/README.md

15 lines
601 B

4 years ago
To add support for another package manager, drop in a module with the following interface:
```
{
list: (npmOptions) => Promise<{ NAME: VERSION, ... }>
latest: (String pkgName) => Promise<String> version
newest: (String pkgName) => Promise<String> version
greatest: (String pkgName) => Promise<String> version
greatestMajor: (String pkgName, String currentVersion) => Promise<String> version
greatestMinor: (String pkgName, String currentVersion) => Promise<String> version
}
```
* latest and greatest are expected to reject with `'404 Not Found'` if the package is not found