GitXplorerGitXplorer
b

gulp-npm-version

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
bcc4e0c8667e1c0f4049148dbeb6f6282fd4bd61

Add option to show up-to-date dependencies

bbastienmoulia committed 9 years ago
Unverified
2f3c580077463de74c7a6345983cccb42d693518

Add support for server with #

bbastienmoulia committed 9 years ago
Unverified
e6c87a2e8f8c483b8a4624c21b3a923a5d315ed4

Add documentation and ESLint

bbastienmoulia committed 9 years ago
Unverified
1def238e2b5102304118f2b74654eea3daac5770

init

bbastienmoulia committed 9 years ago
Unverified
36c0ef9d9990f7419ac8161409e7ecb8beae5732

Initial commit

bbastienmoulia committed 9 years ago

README

The README file for this repository.

gulp-npm-version

Checks if your NPM dependencies are out of date.

Based on grunt-version-check.

Installation

Install package with NPM and add it to your development dependencies:

npm install --save-dev gulp-npm-version

Usage

var npmVersion = require('gulp-npm-version');

gulp.task('npm-version', function() {
  return gulp.src('./package.json')
    .pipe(npmVersion());
});

Options

showUpToDate

Type: Boolean Default value: false

If true, dependencies that are out of date will be listed.