forked from noble/node-bluetooth-hci-socket
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.13 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
{
"name": "@stoprocent/bluetooth-hci-socket",
"version": "1.0.0",
"description": "Bluetooth HCI socket binding for Node.js",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/stoprocent/node-bluetooth-hci-socket.git"
},
"keywords": [
"HCI",
"Bluetooth",
"Linux",
"Windows"
],
"author": "Sandeep Mistry <[email protected]>",
"maintainers": [
"Marek Serafin <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stoprocent/node-bluetooth-hci-socket/issues"
},
"homepage": "https://github.com/stoprocent/node-bluetooth-hci-socket",
"os": [
"linux",
"android",
"freebsd",
"win32",
"darwin"
],
"dependencies": {
"debug": "^4.3.7",
"node-addon-api": "^8.1.0",
"node-gyp-build": "^4.8.1",
"async": "^3.2.6",
"serialport": "^12.0.0",
"patch-package": "^8.0.0"
},
"optionalDependencies": {
"usb": "^2.14.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"prebuildify": "^6.0.1",
"prebuildify-cross": "^5.1.0",
"semantic-release": "^24.1.1",
"jshint": "^2.13.6"
},
"scripts": {
"install": "node-gyp-build",
"lint": "eslint \"**/*.js\"",
"lint-fix": "eslint \"**/*.js\" --fix",
"prebuildify": "prebuildify --napi --target 17.0.0 --force --strip --verbose",
"prebuildify-cross": "patch-package && prebuildify-cross --napi --target 17.0.0 --force --strip --verbose",
"semantic-release": "semantic-release",
"pretest": "npm run rebuild",
"rebuild": "node-gyp rebuild",
"test": "jshint lib/*.js && node test.js"
},
"jshintConfig": {
"esversion": 6
},
"publishConfig": {
"access": "public"
}
}