We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5da74c3 commit 24e1608Copy full SHA for 24e1608
gulpfile.js
package.json
@@ -4,7 +4,7 @@
4
"description": "Get the MAC addresses (hardware addresses) of the hosts network interfaces.",
5
"main": "index.js",
6
"scripts": {
7
- "test": "node test.js"
+ "test": "jshint *.js && node test.js"
8
},
9
"repository": {
10
"type": "git",
@@ -24,7 +24,6 @@
24
25
"homepage": "https://github.com/scravy/node-macaddress",
26
"devDependencies": {
27
- "gulp": "^3.1.0",
28
- "gulp-jshint": "^1.4.0"
+ "jshint": "^2.8.0"
29
}
30
test.js
@@ -1,3 +1,6 @@
1
+/* jshint node: true */
2
+'use strict';
3
+
var macaddress = require('./index');
var sync = macaddress.one(function (err, mac) {
0 commit comments