-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
39 lines (39 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "noble-mac",
"description": "Noble (Node.js Bluetooth LE) bindings using CoreBluetooth API",
"version": "0.0.4",
"author": "[email protected]",
"license": "MIT",
"repository": {
"url": "https://github.com/Timeular/noble-mac.git"
},
"main": "index.js",
"gypfile": true,
"engines": {
"node": ">=6.14.2"
},
"dependencies": {
"cross-spawn": "^6.0.5",
"napi-thread-safe-callback": "0.0.6",
"noble": "^1.9.1",
"node-addon-api": "^1.1.0",
"node-pre-gyp": "^0.10.0"
},
"scripts": {
"install": "node install.js",
"native_install": "node-pre-gyp install --fallback-to-build",
"test": "node --napi-modules ./test/ci_test.js",
"test:bindings": "node --napi-modules ./test/test_binding.js",
"xcode": "node-pre-gyp configure --debug -- -f xcode",
"build:source": "node-pre-gyp install --build-from-source",
"build:package": "node-pre-gyp configure build package",
"build:publish": "node-pre-gyp-github publish",
"build:test": "node-pre-gyp install --fallback-to-build=false"
},
"binary": {
"module_name": "noble_mac",
"module_path": "./native/",
"host": "https://github.com/Timeular/noble-mac/releases/download/",
"remote_path": "{version}"
}
}