Compiles under Node 10

This commit is contained in:
Nathan Kellenicki 2018-10-09 13:37:56 -07:00
parent 588013c5ef
commit a7f9474b03
2 changed files with 14 additions and 10 deletions

21
package-lock.json generated
View File

@ -145,6 +145,11 @@
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
}, },
"bindings": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz",
"integrity": "sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw=="
},
"bluebird": { "bluebird": {
"version": "3.5.2", "version": "3.5.2",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.2.tgz", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.2.tgz",
@ -776,8 +781,7 @@
"nan": { "nan": {
"version": "2.11.1", "version": "2.11.1",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz", "resolved": "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz",
"integrity": "sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==", "integrity": "sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA=="
"optional": true
}, },
"napi-thread-safe-callback": { "napi-thread-safe-callback": {
"version": "0.0.6", "version": "0.0.6",
@ -836,8 +840,8 @@
} }
}, },
"noble-mac": { "noble-mac": {
"version": "git+ssh://git@github.com/Timeular/noble-mac.git#3d8046d330624e1d1c66fc4d6a3ed7598eba8f69", "version": "github:Timeular/noble-mac#3d8046d330624e1d1c66fc4d6a3ed7598eba8f69",
"from": "git+ssh://git@github.com/Timeular/noble-mac.git#3d8046d", "from": "github:Timeular/noble-mac#3d8046d",
"requires": { "requires": {
"napi-thread-safe-callback": "0.0.6", "napi-thread-safe-callback": "0.0.6",
"noble": "^1.9.1", "noble": "^1.9.1",
@ -1428,12 +1432,11 @@
"dev": true "dev": true
}, },
"xpc-connection": { "xpc-connection": {
"version": "0.1.4", "version": "github:sandeepmistry/node-xpc-connection#8ff8b20e1146a1cb13cc57f9802593995014f31e",
"resolved": "https://registry.npmjs.org/xpc-connection/-/xpc-connection-0.1.4.tgz", "from": "github:sandeepmistry/node-xpc-connection#pull/26/head",
"integrity": "sha1-3Nf6oq7Gt6bhjMXdrQQvejTHcVY=",
"optional": true,
"requires": { "requires": {
"nan": "^2.0.5" "bindings": "~1.3.0",
"nan": "^2.4.0"
} }
}, },
"yallist": { "yallist": {

View File

@ -17,7 +17,8 @@
"dependencies": { "dependencies": {
"debug": "^3.1.0", "debug": "^3.1.0",
"noble": "^1.9.1", "noble": "^1.9.1",
"noble-mac": "git@github.com:Timeular/noble-mac.git#3d8046d" "noble-mac": "Timeular/noble-mac.git#3d8046d",
"xpc-connection": "sandeepmistry/node-xpc-connection#pull/26/head"
}, },
"devDependencies": { "devDependencies": {
"jsdoc-to-markdown": "^4.0.1", "jsdoc-to-markdown": "^4.0.1",