-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@sorrir/bluetooth",
"version": "0.5.5",
"description": "A BLE library for both central modules and peripherals - built upon bluez, the official Linux Bluetooth protocol stack.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-test": "node build/test.js",
"build-babel": "babel src -d lib --extensions \".ts,.js\"",
"build-types": "tsc --declaration --emitDeclarationOnly --declarationMap --allowJs false --checkJs false",
"build": "babel src -d lib --extensions \".ts,.js\" && tsc --declaration --emitDeclarationOnly --declarationMap --allowJs false --checkJs false",
"build-watch": "babel src -d lib --extensions \".ts,.js\" --watch & tsc --declaration --emitDeclarationOnly --declarationMap --allowJs false --checkJs false -w && kill $!",
"lint-test": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"pre-commit": [
"lint-fix"
],
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"decoratorsBeforeExport": true,
"legacy": false
}
],
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
],
"@babel/plugin-transform-typescript",
"@babel/plugin-proposal-class-properties"
]
},
"keywords": [
"bluez",
"bluetooth",
"sorrir",
"ble",
"bluetooth low energy",
"central module",
"peripheral"
],
"author": "Thomas Huffert",
"license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.20.1",
"@quadratclown/dbus-next": "1.0.2",
"handlebars": "^4.7.7"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/plugin-transform-typescript": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/sorrir/node-bluetooth.git"
}
}