Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use dependencies with support for Node 10.16.3, bump version to 2.0.0 #1

Merged
merged 3 commits into from
Nov 4, 2019
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
29 changes: 13 additions & 16 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 @@ -19,7 +19,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/sandeepmistry/bleno"
"url": "https://github.com/k4connect/bleno"
},
"keywords": [
"BLE",
Expand All @@ -28,24 +28,21 @@
"Bluetooth Smart",
"peripheral"
],
"author": "Sandeep Mistry",
"maintainers": [
"Jacob Rosenthal"
],
"author": "K4Connect, Inc.",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we add back the original author and add us as maintainers?

"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"
}
}