forked from abandonware/noble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.52 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
{
"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-9",
"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",
"engines": {
"node": ">=6"
},
"os": [
"darwin",
"linux",
"freebsd",
"win32"
],
"dependencies": {
"debug": "^4.1.1",
"napi-thread-safe-callback": "0.0.6",
"node-addon-api": "^2.0.0"
},
"optionalDependencies": {
"@abandonware/bluetooth-hci-socket": "^0.5.3-5"
},
"devDependencies": {
"async": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"install": "^0.13.0",
"mocha": "^7.1.0",
"node-gyp": "^6.1.0",
"prettier": "^1.19.1",
"should": "~13.2.3",
"sinon": "~9.0.0",
"ws": "^7.2.1"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "mocha -R spec test/*.js"
},
"browser": {
"./lib/resolve-bindings.js": "./lib/resolve-bindings-web.js"
}
}