Package updates

This commit is contained in:
Christian Kuster 2019-04-09 19:48:21 +02:00
parent e874b44200
commit 5030d9f693
4 changed files with 1648 additions and 3 deletions

View File

@ -27,6 +27,12 @@ It was tested with the following operating systems:
## Usage ## Usage
### Command Line
Run the script ```scan``` in the bin folder.
### Code
const scanner = require('node-wifi-scanner'); const scanner = require('node-wifi-scanner');
scanner.scan((err, networks) => { scanner.scan((err, networks) => {

View File

@ -3,7 +3,6 @@
* Created by kc on 04.04.16. * Created by kc on 04.04.16.
*/ */
const fs = require('fs');
const exec = require('child_process').exec; const exec = require('child_process').exec;
const async = require('async'); const async = require('async');
const _ = require('lodash'); const _ = require('lodash');

1640
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -35,12 +35,12 @@
"test": "mocha test" "test": "mocha test"
}, },
"dependencies": { "dependencies": {
"async": "2.1.4", "async": "2.6.2",
"lodash": "^4.17.11" "lodash": "^4.17.11"
}, },
"devDependencies": { "devDependencies": {
"grunt": "^1.0.3", "grunt": "^1.0.3",
"grunt-bump": "0.7.0", "grunt-bump": "0.8.0",
"mocha": "^6.0.2" "mocha": "^6.0.2"
} }
} }