forked from chrvadala/node-ble
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
{
"name": "node-ble",
"description": "Bluetooth Low Energy (BLE) library written with pure Node.js (no bindings) - baked by Bluez via DBus",
"version": "1.5.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": {
"test": "jest --testPathIgnorePatterns=e2e.spec.js",
"coverage": "jest --testPathIgnorePatterns=e2e.spec.js --coverage",
"test:e2e": "jest",
"standard": "standard",
"ci": "npm-run-all standard coverage typescript",
"typescript": "tsc --strict src/index.d.ts",
"build": "exit 0"
},
"dependencies": {
"dbus-next": "^0.9.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"standard": "^16.0.3",
"typescript": "^4.1.3"
},
"standard": {
"ignore": [
"example.js",
"test/__interfaces/*.js"
]
},
"funding": "https://www.paypal.me/chrvadala/25"
}