forked from abandonware/bleno
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (80 loc) · 2.28 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
{
"name": "@stoprocent/bleno",
"version": "0.7.0",
"description": "A Node.js module for implementing BLE (Bluetooth Low Energy) peripherals",
"main": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14"
},
"os": [
"darwin",
"linux",
"android",
"freebsd",
"win32"
],
"scripts": {
"install": "node-gyp-build",
"lint": "eslint \"**/*.js\"",
"lint-fix": "eslint \"**/*.js\" --fix",
"prebuildify": "prebuildify --napi --target 14.0.0 --force --strip --verbose",
"prebuildify-cross": "prebuildify-cross --napi --target 14.0.0 --force --strip --verbose",
"semantic-release": "semantic-release",
"pretest": "npm run rebuild",
"rebuild": "node-gyp rebuild",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > .nyc_output/lcov.info",
"test": "cross-env NODE_ENV=test mocha --recursive \"test/*.test.js\" \"test/**/*.test.js\" --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/stoprocent/bleno"
},
"keywords": [
"BLE",
"Bluetooth",
"Bluetooth Low Energy",
"Bluetooth Smart",
"peripheral"
],
"author": "Sandeep Mistry <[email protected]>",
"maintainers": [
"Marek Serafin <[email protected]>"
],
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@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": "^10.1.1",
"jshint": "^2.13.6",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"node-blink1": "^0.5.1",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"prebuildify": "^6.0.1",
"prebuildify-cross": "thegecko/prebuildify-cross#fix-docker",
"should": "^13.2.3"
},
"dependencies": {
"debug": "^4.3.7",
"napi-thread-safe-callback": "^0.0.6",
"node-addon-api": "^8.1.0",
"node-gyp-build": "^4.8.1"
},
"optionalDependencies": {
"@stoprocent/bluetooth-hci-socket": "^1.5.2",
"bplist-parser": "0.3.2",
"xpc-connect": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}