Skip to content

Commit

Permalink
removed gulp all together, just use npm test
Browse files Browse the repository at this point in the history
  • Loading branch information
scravy committed Jul 1, 2015
1 parent 5da74c3 commit 24e1608
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
13 changes: 0 additions & 13 deletions gulpfile.js

This file was deleted.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Get the MAC addresses (hardware addresses) of the hosts network interfaces.",
"main": "index.js",
"scripts": {
"test": "node test.js"
"test": "jshint *.js && node test.js"
},
"repository": {
"type": "git",
Expand All @@ -24,7 +24,6 @@
},
"homepage": "https://github.com/scravy/node-macaddress",
"devDependencies": {
"gulp": "^3.1.0",
"gulp-jshint": "^1.4.0"
"jshint": "^2.8.0"
}
}
3 changes: 3 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/* jshint node: true */
'use strict';

var macaddress = require('./index');

var sync = macaddress.one(function (err, mac) {
Expand Down

0 comments on commit 24e1608

Please sign in to comment.