-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
74 lines (74 loc) · 1.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
{
"name": "iobroker.rest-api",
"version": "2.0.3",
"description": "RESTful interface for ioBroker with GUI.",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"contributors": [],
"homepage": "https://github.com/ioBroker/ioBroker.rest-api",
"keywords": [
"ioBroker",
"rest-api",
"swagger-ui",
"web"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.rest-api"
},
"dependencies": {
"@iobroker/adapter-core": "^3.1.6",
"@iobroker/socket-classes": "^1.5.6",
"@iobroker/webserver": "^1.0.6",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"multer": "^1.4.5-lts.1",
"swagger-node-runner-fork": "^0.8.0",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.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/adapter-dev": "^1.3.0",
"@iobroker/testing": "^4.1.3",
"chai": "^4.4.1",
"eslint-plugin-eqeqeq-fix": "^1.0.3",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.37.2",
"gulp": "^4.0.2",
"mocha": "^10.8.2"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.rest-api/issues"
},
"main": "main.js",
"files": [
"admin/",
"img/",
"lib/",
"examples/",
"LICENSE",
"main.js",
"io-package.json"
],
"scripts": {
"build": "gulp",
"test": "node node_modules/mocha/bin/mocha --exit",
"release": "release-script",
"release-patch": "release-script patch --yes --no-update-lockfile",
"release-minor": "release-script minor --yes --no-update-lockfile",
"release-major": "release-script major --yes --no-update-lockfile",
"translate": "translate-adapter",
"update-packages": "ncu --upgrade"
},
"license": "Apache-2.0"
}