forked from noble/noble
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 KB
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
{
"author": "Sandeep Mistry <sandeep.mistry@gmail.com>",
"maintainers": [
"Marek Serafin <marek@serafin.email>"
],
"license": "MIT",
"name": "@stoprocent/noble",
"description": "A Node.js BLE (Bluetooth Low Energy) central library.",
"version": "1.12.0",
"repository": {
"type": "git",
"url": "https://github.com/stoprocent/noble.git"
},
"bugs": {
"url": "https://github.com/stoprocent/noble/issues"
},
"keywords": [
"bluetooth",
"BLE",
"bluetooth low energy",
"bluetooth smart",
"central"
],
"main": "./index.js",
"types": "./index.d.ts",
"gypfile": true,
"engines": {
"node": ">=14"
},
"dependencies": {
"debug": "^4.3.7",
"node-addon-api": "^8.1.0",
"node-gyp-build": "^4.8.1",
"patch-package": "^8.0.0"
},
"optionalDependencies": {
"@stoprocent/bluetooth-hci-socket": "^2.2.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"async": "^3.2.6",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-node": "^4.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"jshint": "^2.13.6",
"prebuildify": "^6.0.1",
"prebuildify-cross": "^5.1.1",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"semantic-release": "^25.0.3",
"should": "^13.2.3",
"sinon": "^15.0.1"
},
"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": "npx jest"
},
"publishConfig": {
"access": "public"
}
}