forked from chrvadala/node-ble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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
{
"name": "node-ble",
"description": "Bluetooth Low Energy (BLE) library written with pure Node.js (no bindings) - baked by Bluez via DBus",
"version": "1.9.0",
"repository": "https://github.com/chrvadala/node-ble.git",
"author": "chrvadala",
"license": "MIT",
"main": "./src/index.js",
"typings": "./src/index.d.ts",
"files": [
"*.md",
"src",
"test",
"test-e2e",
"example.js"
],
"keywords": [
"bluetooth-low-energy",
"ble",
"bluetooth-peripherals",
"bluez",
"bluez-dbus",
"bluetooth",
"bluetooth-le"
],
"homepage": "https://github.com/chrvadala/node-ble",
"scripts": {
"build": "npm run docs:api",
"test": "npm run test:standard && npm run test:coverage && npm run test:typescript",
"test:jest": "jest --testPathIgnorePatterns=e2e.spec.js",
"test:coverage": "jest --testPathIgnorePatterns=e2e.spec.js --coverage",
"test:e2e": "jest",
"test:standard": "standard",
"test:typescript": "tsc --strict src/index.d.ts",
"docs:api": "jsdoc2md --template docs/templates/api.hbs --example-lang js --heading-depth 2 src/*.js > docs/api.md"
},
"dependencies": {
"dbus-next": "^0.10.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.1",
"standard": "^17.1.0",
"typescript": "^5.3.3"
},
"standard": {
"ignore": [
"example.js",
"test/__interfaces/*.js"
]
},
"funding": "https://github.com/sponsors/chrvadala"
}