-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.49 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
{
"name": "iobroker.nmea",
"description": "The adapter allows the communication to NMEA2000 or NMEA0183 bus",
"version": "1.0.3",
"author": "Haev Denis <dogafox@gmail.com>",
"homepage": "https://github.com/ioBroker/ioBroker.nmea",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.nmea"
},
"keywords": [
"ioBroker",
"notification",
"NMEA2000",
"NMEA0183"
],
"dependencies": {
"@canboat/canboatjs": "^3.20.0",
"@iobroker/adapter-core": "^3.4.1",
"geo-tz": "^8.1.7",
"moment": "^2.30.1",
"ws": "^8.21.0"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.1",
"@alcalzone/release-script-plugin-iobroker": "^5.2.0",
"@alcalzone/release-script-plugin-license": "^5.2.0",
"@iobroker/types": "^7.1.2",
"@iobroker/build-tools": "^3.0.1",
"@iobroker/eslint-config": "^2.3.4",
"@iobroker/legacy-testing": "^2.0.2",
"@iobroker/testing": "^5.2.2",
"@iobroker/vis-2-widgets-testing": "^1.0.6",
"@types/node": "^22.20.0",
"@types/ws": "^8.18.1",
"typescript": "~6.0.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.nmea/issues"
},
"main": "build/main.js",
"files": [
"admin/",
"img/widgetExamples.png",
"LICENSE",
"widgets",
"io-package.json",
"build/"
],
"scripts": {
"test:integration": "mocha ./test/*.gui.js --exit",
"test:package": "mocha test/package.test.js --exit",
"release": "release-script",
"prepublishOnly": "npm run build",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"translate": "translate-adapter",
"build:admin": "node tasks.mts --admin",
"update-packages": "npx -y npm-check-updates --upgrade && cd src-widgets && npx -y npm-check-updates --upgrade && cd ../src-devices && npx -y npm-check-updates --upgrade && cd ../src-admin && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src-widgets && npm i -f && cd ../src-devices && npm i -f && cd ../src-admin && npm i",
"test": "mocha ./test/*.engine.js --exit",
"lint": "eslint -c eslint.config.mjs && cd src-widgets && npm run lint && cd ../src-devices && npm run lint && cd ../src-admin && npm run lint",
"build": "npm run build:ts && npm run build:gui",
"build:gui": "node tasks.mts",
"build:ts": "tsc -p tsconfig.build.json && node tasks.mts --copy-i18n"
},
"engines": {
"node": ">=22"
},
"license": "MIT"
}