forked from openhab/org.openhab.ui.habpanel
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
101 lines (101 loc) · 2.64 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "iobroker.habpanel",
"description": "Dashboard based on HABPanel",
"version": "0.5.0",
"author": {
"name": "Yannick Schaus",
"email": "[email protected]"
},
"contributors": [
{
"name": "Yannick Schaus",
"email": "[email protected]"
},
{
"name": "Kuba Wolanin",
"email": "[email protected]"
},
{
"name": "bluefox",
"email": "[email protected]"
},
{
"name": "jogibear9988",
"email": "[email protected]"
}
],
"homepage": "https://github.com/iobroker-community-adapters/ioBroker.habpanel",
"repository": {
"type": "git",
"url": "https://github.com/iobroker-community-adapters/ioBroker.habpanel"
},
"keywords": [
"ioBroker",
"GUI",
"web interface",
"habpanel"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"@iobroker/adapter-core": "^2.6.8",
"bower": "^1.8.14"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@vitalets/google-translate-api": "github:vitalets/google-translate-api",
"babel-eslint": "^6.1.2",
"chai": "^4.3.7",
"configstore": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-esnext": "^1.4.3",
"eslint-config-recommended": "^1.3.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-native": "^2.3.2",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-cssmin": "^0.2.0",
"gulp-eslint": "^6.0.0",
"gulp-filter": "^7.0.0",
"gulp-main-bower-files": "1.8.2",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sass-glob": "^1.1.0",
"gulp-uglify": "^3.0.2",
"gulp-webserver": "^0.9.1",
"mocha": "^9.2.2",
"n3-charts": "^2.0.28",
"request": "^2.88.2",
"safe-eval": "^0.4.1",
"node-sass": "^7.0.3"
},
"bugs": {
"url": "https://github.com/iobroker-community-adapters/ioBroker.habpanel/issues"
},
"main": "",
"files": [
"admin/",
"doc/",
"lib/",
"www/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --exit",
"bower": "node node_modules/bower/bin/bower i",
"prepublish1": "node node_modules/gulp/bin/gulp default",
"build": "node node_modules/gulp/bin/gulp default",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes"
},
"license": "EPL-1.0"
}