forked from abandonware/noble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.09 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"author": "Sandeep Mistry",
"maintainers": [
"Jacob Rosenthal",
"Luis Montes"
],
"license": "MIT",
"name": "@abandonware/noble",
"description": "A Node.js BLE (Bluetooth Low Energy) central library.",
"version": "1.9.2-15",
"repository": {
"type": "git",
"url": "https://github.com/abandonware/noble.git"
},
"bugs": {
"url": "https://github.com/abandonware/noble/issues"
},
"keywords": [
"bluetooth",
"BLE",
"bluetooth low energy",
"bluetooth smart",
"central"
],
"main": "./index.js",
"types": "./index.d.ts",
"gypfile": true,
"engines": {
"node": ">=6"
},
"os": [
"darwin",
"linux",
"freebsd",
"win32"
],
"dependencies": {
"debug": "^4.3.1",
"napi-thread-safe-callback": "^0.0.6",
"node-addon-api": "^4.2.0",
"node-gyp-build": "^4.3.0"
},
"optionalDependencies": {
"@abandonware/bluetooth-hci-socket": "^0.5.3-8"
},
"devDependencies": {
"async": "^3.2.0",
"eslint": "^8.4.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.3",
"node-gyp": "^8.4.1",
"prebuildify": "^5.0.0",
"prebuildify-ci": "^1.0.5",
"prebuildify-cross": "^4.0.1",
"prettier": "^2.3.0",
"proxyquire": "^2.1.3",
"should": "~13.2.3",
"sinon": "^12.0.1",
"ws": "^8.3.0"
},
"scripts": {
"install": "node-gyp-build",
"lint": "eslint \"**/*.js\"",
"lint-fix": "eslint \"**/*.js\" --fix",
"prebuild": "prebuildify --napi --strip",
"prebuild-darwin": "prebuildify --napi --strip --arch x64+arm64",
"prebuild-win32": "prebuildify --napi --strip",
"prebuild-linux": "prebuildify --napi --strip",
"prebuild-download": "prebuildify-ci download",
"pretest": "npm run rebuild",
"rebuild": "node-gyp rebuild",
"test": "mocha -R spec test/*.js"
},
"browser": {
"./lib/resolve-bindings.js": "./lib/resolve-bindings-web.js"
},
"binary": {
"napi_versions": [
4
]
}
}