0.0.2 • Published 10 years ago

semver-check v0.0.2

Weekly downloads
6
License
ISC
Repository
github
Last release
10 years ago

semver-check

Checks package.json dependencies and devDependencies stanzas for semantic version characters.

If found, it logs each offending dependency to the console.

Usage

# Install as dep
$ npm install semver-check --save-dev

# Add a dep to your package.json that has one of these chars: *=~<>^
$ npm install chalk --save

# Run as a cli program.
$ ./node_modules/.bin/semver-check package.json
// -> chalk not pinned to specific version

Note

The first() higher order function, and why I'm using it.