Skip to content

Commit

Permalink
Merge pull request #1 from k4connect/enhancement/add-nodejs-10-support
Browse files Browse the repository at this point in the history
Use dependencies with support for Node 10.16.3, bump version to 2.0.0
  • Loading branch information
pdulapalli authored Nov 4, 2019
2 parents 72028bc + 6441278 commit 46d77eb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion lib/hci-socket/hci.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var debug = require('debug')('hci');
var events = require('events');
var util = require('util');

var BluetoothHciSocket = require('bluetooth-hci-socket');
var BluetoothHciSocket = require('@abandonware/bluetooth-hci-socket');

var HCI_COMMAND_PKT = 0x01;
var HCI_ACLDATA_PKT = 0x02;
Expand Down
2 changes: 1 addition & 1 deletion lib/hci-socket/mgmt.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var debug = require('debug')('mgmt');
var events = require('events');
var util = require('util');

var BluetoothHciSocket = require('bluetooth-hci-socket');
var BluetoothHciSocket = require('@abandonware/bluetooth-hci-socket');

var LTK_INFO_SIZE = 36;

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "bleno",
"version": "0.5.0",
"name": "@k4connect/bleno",
"version": "0.5.0-k4-1",
"description": "A Node.js module for implementing BLE (Bluetooth Low Energy) peripherals",
"main": "index.js",
"engines": {
"node": ">=0.8"
"node": ">=10.16.3"
},
"os": [
"darwin",
Expand All @@ -28,24 +28,24 @@
"Bluetooth Smart",
"peripheral"
],
"author": "Sandeep Mistry",
"author": "Sandeep Mistry <sandeep.mistry@gmail.com>",
"maintainers": [
"Jacob Rosenthal"
],
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"jshint": "~2.9.4",
"should": "~2.0.2",
"mocha": "~1.14.0",
"node-blink1": "~0.2.2"
"jshint": "2.10.2",
"should": "13.2.3",
"mocha": "6.2.2",
"node-blink1": "0.2.4"
},
"dependencies": {
"debug": "^2.2.0"
"@abandonware/bluetooth-hci-socket": "0.5.3-3",
"debug": "4.1.1"
},
"optionalDependencies": {
"bluetooth-hci-socket": "^0.5.1",
"bplist-parser": "0.0.6",
"xpc-connection": "~0.1.4"
"bplist-parser": "0.1.1",
"xpc-connection": "0.1.4"
}
}

0 comments on commit 46d77eb

Please sign in to comment.