-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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
{
"name": "iobroker.vis",
"description": "Graphical user interface for ioBroker.",
"version": "1.5.6",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"engines": {
"node": ">=16"
},
"contributors": [
"bluefox <[email protected]>",
"hobbyquaker <[email protected]>"
],
"homepage": "https://github.com/iobroker/iobroker.vis",
"repository": {
"type": "git",
"url": "git+https://github.com/ioBroker/ioBroker.vis.git"
},
"keywords": [
"iobroker",
"GUI",
"DashUI",
"web interface",
"home automation",
"SCADA"
],
"dependencies": {
"@iobroker/adapter-core": "^3.1.6"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/legacy-testing": "^1.0.12",
"@iobroker/vis-2-widgets-testing": "^1.0.4",
"chai": "^4.4.1",
"colorette": "^2.0.20",
"gulp": "^4.0.2",
"gulp-replace": "^1.1.4",
"iobroker.web": "*",
"mocha": "^10.4.0",
"puppeteer": "^22.12.1"
},
"bugs": {
"url": "https://github.com/iobroker/iobroker.vis/issues"
},
"main": "main.js",
"files": [
"admin/",
"!admin/i18n/",
"img/",
"lib/",
"www/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "mocha --exit",
"install": "node main.js --install",
"install-only": "npm install --ignore-scripts",
"prepublishOnly": "node node_modules/gulp/bin/gulp.js",
"build": "node node_modules/gulp/bin/gulp.js",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"update-packages": "ncu --upgrade"
},
"license": "MIT"
}