Skip to content

Commit

Permalink
update requirements to Node.js 4.2.0 and npm 3.3.0
Browse files Browse the repository at this point in the history
Node.js 4.2.0 is now LTS, so it's a good target to require. npm 3.3.0 is a stable version of npm.
  • Loading branch information
sindresorhus committed Oct 22, 2015
1 parent 981a386 commit c9c6a23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/rules/node-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var semver = require('semver');
var message = require('../message');

var OLDEST_NODE_VERSION = '0.12.0';
var OLDEST_NODE_VERSION = '4.2.0';

exports.description = 'Node.js version';

Expand Down
2 changes: 1 addition & 1 deletion lib/rules/npm-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var binVersionCheck = require('bin-version-check');
var message = require('../message');

exports.OLDEST_NPM_VERSION = '2.9.0';
exports.OLDEST_NPM_VERSION = '3.3.0';

exports.description = 'npm version';

Expand Down

0 comments on commit c9c6a23

Please sign in to comment.