forked from Timeular/noble-winrt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 980 Bytes
/
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
{
"name": "noble-winrt",
"description": "Noble (Node.js Bluetooth LE) bindings for Windows 10",
"version": "0.2.0",
"author": "[email protected]",
"contributors": [
"Yuriy Ackermann <[email protected]> <[email protected]> @herrjemand"
],
"license": "MIT",
"repository": {
"url": "https://github.com/Timeular/noble-winrt.git"
},
"main": "index.js",
"gypfile": true,
"os": [
"win32"
],
"engines": {
"node": ">=6.14.2"
},
"dependencies": {
"@abandonware/noble": "^1.9.2-14",
"bindings": "~1.3.0",
"napi-thread-safe-callback": "0.0.6",
"node-addon-api": "^2.0.0",
"prebuild-install": "^5.0.0"
},
"scripts": {
"install": "prebuild-install --force || node-gyp rebuild",
"ci": "node --napi-modules ./test/ci_test.js",
"test:bindings": "node --napi-modules ./test/test_binding.js",
"test:battery": "node --napi-modules ./test/test_battery.js",
"build:source": "node-gyp rebuild"
}
}