forked from ioBroker/ioBroker.admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.96 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
102
{
"name": "iobroker.admin",
"description": "The adapter opens a webserver for the ioBroker admin UI.",
"version": "6.11.0",
"contributors": [
"bluefox <[email protected]>",
"apollon77",
"soef <[email protected]>",
"hobbyquaker <[email protected]>",
"ldittmar <[email protected]>"
],
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/ioBroker/ioBroker.admin",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.admin"
},
"license": "MIT",
"keywords": [
"ioBroker",
"setup"
],
"dependencies": {
"@iobroker/adapter-core": "^3.0.4",
"@iobroker/socket-classes": "^1.4.6",
"@iobroker/webserver": "^1.0.3",
"@iobroker/ws-server": "^2.1.1",
"archiver": "^6.0.1",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-fileupload": "^1.4.1",
"express-session": "^1.17.3",
"mime": "^3.0.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"semver": "^7.5.4",
"ws": "^8.14.2"
},
"devDependencies": {
"@alcalzone/release-script": "^3.6.0",
"@alcalzone/release-script-plugin-iobroker": "^3.6.0",
"@alcalzone/release-script-plugin-license": "^3.5.9",
"@iobroker/legacy-testing": "^1.0.1",
"@iobroker/testing": "^4.1.0",
"@tsconfig/node16": "^16.1.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"chai": "^4.3.10",
"colorette": "^2.0.20",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-less": "^5.0.0",
"gulp-replace": "^1.1.4",
"gulp-sourcemaps": "^3.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"puppeteer": "^21.3.8",
"typescript": "^5.2.2"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.admin/issues"
},
"main": "main.js",
"files": [
"admin/",
"lib/",
"docs/",
"adminWww/",
"public/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "npm run test:package && npm run test:unit",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"test:rule": "mocha test/rule --exit",
"test:gui": "mocha test/*.gui.js --exit",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"prepublishOnly": "node node_modules/gulp/bin/gulp.js",
"build": "node node_modules/gulp/bin/gulp.js",
"update-packages": "ncu --upgrade && cd src && ncu --upgrade && cd ..",
"npm": "npm i && cd src && npm i -f && cd .."
},
"author": "bluefox <[email protected]>"
}