-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.79 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.79 KB
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
{
"name": "iobroker.script-restore",
"version": "0.1.4",
"description": "Restore ioBroker scripts from backup archives",
"author": {
"name": "ipod86",
"email": "david@graef.email"
},
"contributors": [],
"homepage": "https://github.com/ipod86/ioBroker.script-restore",
"license": "MIT",
"keywords": [
"ioBroker",
"backup",
"restore",
"scripts",
"javascript",
"iobroker"
],
"repository": {
"type": "git",
"url": "https://github.com/ipod86/ioBroker.script-restore.git"
},
"engines": {
"node": ">= 22"
},
"dependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@iobroker/adapter-core": "^3.3.2",
"@iobroker/types": "^7.1.0",
"@marsaud/smb2": "^0.18.0",
"basic-ftp": "^6.0.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"ssh2-sftp-client": "^12.1.1",
"typescript-eslint": "^8.59.4",
"webdav": "^5.10.0"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.0",
"@alcalzone/release-script-plugin-iobroker": "^5.2.0",
"@alcalzone/release-script-plugin-license": "^5.2.0",
"@alcalzone/release-script-plugin-manual-review": "^5.2.0",
"@iobroker/adapter-dev": "^1.5.0",
"@iobroker/eslint-config": "^2.3.4",
"@iobroker/testing": "^5.2.2",
"@tsconfig/node18": "^18.2.6",
"@types/iobroker": "npm:@iobroker/types@^7.1.0",
"@types/node": "^25.9.1",
"@types/ssh2-sftp-client": "^9.0.6",
"rimraf": "^6.1.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"main": "build/main.js",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"build/",
"www/",
"io-package.json",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf build",
"build": "build-adapter ts",
"watch": "build-adapter ts --watch",
"prebuild:ts": "rimraf build",
"build:ts": "build-adapter ts",
"watch:ts": "build-adapter ts --watch",
"test:ts": "mocha --config test/mocharc.custom.json src/**/*.test.ts",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test": "npm run test:ts && npm run test:package",
"check": "tsc --noEmit",
"lint": "eslint -c eslint.config.mjs .",
"translate": "translate-adapter",
"release": "release-script"
},
"bugs": {
"url": "https://github.com/ipod86/ioBroker.script-restore/issues"
},
"readmeFilename": "README.md"
}