In my project, the previous developers have put various of JS packages locally, such as chart.js
, jquery.block-ui.js
, modernizr.js
, axios.js
, vue.js
, etc. I'm trying to manage them using NPM. Problem is, they are all old versions.
Q1: how do I know if they are Semver
so it's safe to upgrade them to the latest minor version? I did my research for each package but it's troublesome to look into each one and some of them have very little information about it. Is there somewhere stating all Semvered
JS packages?
Q2: for jquery.block-ui.js
, it is minified, in the file, there is no information about the version number, in this case, is it possible to find out what version it is thus if it's safe to upgrade?