jaredwray / flat-cache

A stupidly simple key/value storage using files to persist the data
MIT License
165 stars 30 forks source link

Less strint version check #44

Closed wojtekmaj closed 4 years ago

wojtekmaj commented 4 years ago

Keeping dependencies at exact versions are causing people using this package to have duplicated packages in their node_modules. Since dependencies you're using are reputable and use semver, it's safe to use "^" version matching, allowing npm to do its job and dedupe stuff.

I also ran npm audit fix when updating package-lock.json since there was a ton of vulnerabilities.

royriojas commented 4 years ago

hi @wojtekmaj, thank you for your PR

Your fix makes sense. Will merge