-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "iobroker.nmea",
"description": "The adapter allows the communication to NMEA2000 or NMEA0183 bus",
"version": "0.2.2",
"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": "^2.6.0",
"@iobroker/adapter-core": "^3.1.6",
"geo-tz": "^8.0.2",
"moment": "^2.30.1"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/types": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"eslint": "^8.57.0",
"gulp": "^4.0.2",
"mocha": "^10.5.2",
"@iobroker/vis-2-widgets-react-dev": "^2.0.1",
"@iobroker/vis-2-widgets-testing": "^1.0.4",
"typescript": "~5.5.2"
},
"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-gui": "mocha ./test/*.gui.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",
"update-packages": "ncu --upgrade && cd src-widgets && ncu --upgrade",
"npm": "npm i && cd src-widgets && npm i -f",
"test": "mocha --exit",
"lint": "eslint --ext .ts src/",
"build": "npm run build:ts && npm run build:gui",
"build:gui": "gulp",
"build:ts": "tsc -p tsconfig.build.json"
},
"engines": {
"node": ">=16"
},
"license": "MIT"
}