forked from ioBroker/ioBroker.web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.83 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
{
"name": "iobroker.web",
"version": "5.5.0",
"description": "ioBroker simple web Adapter",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.web",
"keywords": [
"ioBroker",
"web"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.web"
},
"dependencies": {
"@iobroker/adapter-core": "^2.6.7",
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"iobroker.simple-api": "^2.7.2",
"iobroker.ws": "2.3.5",
"iobroker.socketio": "6.3.3",
"mime-types": "^2.1.35",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@iobroker/legacy-testing": "^0.1.1",
"axios": "^1.3.3",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"gulp": "^4.0.2",
"mocha": "^10.2.0"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.web/issues"
},
"main": "main.js",
"files": [
"admin/",
"lib/",
"www/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --exit",
"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",
"release-major": "release-script major --yes"
},
"license": "MIT",
"maintainers": [
{
"name": "bluefox",
"email": "[email protected]"
}
]
}