-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.29 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
{
"name": "iobroker.welcome",
"version": "1.0.2",
"description": "ioBroker simple web Adapter",
"author": {
"name": "bluefox",
"email": "dogafox@gmail.com"
},
"homepage": "https://github.com/ioBroker/ioBroker.welcome",
"keywords": [
"ioBroker",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.welcome"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@iobroker/webserver": "^1.0.6",
"@iobroker/adapter-core": "^3.2.2",
"express": "^4.21.0",
"axios": "^1.7.8"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/eslint-config": "^0.1.6",
"@iobroker/build-tools": "^2.0.9",
"@iobroker/legacy-testing": "^1.0.13",
"@iobroker/testing": "^5.0.0",
"sinon-chai": "^3.7.0",
"puppeteer": "^23.9.0",
"colorette": "^2.0.20",
"chai-as-promised": "^7.1.2",
"chai": "^4.5.0",
"mocha": "^10.7.3"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.welcome/issues"
},
"main": "main.js",
"files": [
"admin/",
"public/",
"img/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --exit",
"prepublishOnly": "node tasks",
"0-admin-clean": "node tasks --0-admin-clean",
"1-admin-npm": "node tasks --1-admin-npm",
"2-admin-build": "node tasks --2-admin-build",
"3-admin-copy": "node tasks --3-admin-copy",
"build-admin": "node tasks --admin",
"0-clean": "node tasks --0-clean",
"1-npm": "node tasks --1-npm",
"2-build": "node tasks --2-build",
"3-copy": "node tasks --3-copy",
"build-web": "node tasks --build-src",
"build": "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 && ncu --upgrade && cd ../src-admin && ncu --upgrade",
"npm": "npm i && cd src && npm i -f && cd ../src-admin && npm i -f"
},
"license": "MIT",
"maintainers": [
{
"name": "bluefox",
"email": "dogafox@gmail.com"
}
]
}