-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.38 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
{
"name": "iobroker.fullcalendar",
"description": "This adapter allows planing with calendar.",
"version": "2.4.5",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"contributors": [
{
"name": "bluefox",
"email": "[email protected]"
}
],
"homepage": "https://github.com/ioBroker/ioBroker.fullcalendar",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.fullcalendar"
},
"keywords": [
"ioBroker",
"fullcalendar",
"calendar",
"schedule"
],
"dependencies": {
"@iobroker/adapter-core": "^3.1.6",
"later": "^1.2.0",
"suncalc2": "^1.8.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/build-tools": "^1.1.0",
"@iobroker/legacy-testing": "^1.0.13",
"@iobroker/vis-2-widgets-react-dev": "^4.0.3",
"@iobroker/vis-2-widgets-testing": "^1.0.4",
"colorette": "^2.0.20",
"mocha": "^10.7.3",
"puppeteer": "^23.4.1"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.fullcalendar/issues"
},
"main": "main.js",
"files": [
"admin/",
"img/",
"io-package.json",
"LICENSE",
"widgets/",
"lib/",
"main.js"
],
"scripts": {
"test": "mocha ./test/*.engine.js --exit",
"test-gui": "mocha ./test/*.gui.js --exit",
"prepublishOnly": "node tasks",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "ncu --upgrade && cd src-widgets && ncu --upgrade && cd ../src && ncu --upgrade && cd ..",
"npm": "npm i && cd src && npm i -f && cd ../src-widgets && npm i -f && cd ..",
"0-widget-clean": "node tasks --0-widget-clean",
"1-widget-npm": "node tasks --1-widget-npm",
"2-widget-compile": "node tasks --2-widget-compile",
"3-widget-copy": "node tasks --3-widget-copy",
"widget-build": "node tasks --widget-build",
"0-clean": "node tasks --0-clean",
"1-npm": "node tasks --1-npm",
"2-build": "node tasks --2-build",
"3-copy": "node tasks --3-copy",
"4-patch": "node tasks --4-patch",
"build-gui": "node tasks --build",
"build": "node tasks"
},
"license": "MIT"
}