-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "iobroker.virtual-devices",
"version": "0.7.1",
"description": "Create virtual devices from existing datapoints with plugin-based logic",
"author": {
"name": "Skeletor-ai",
"email": ""
},
"homepage": "https://github.com/Skeletor-ai/ioBroker.virtual-devices",
"license": "MIT",
"keywords": [
"ioBroker",
"virtual",
"devices",
"automation",
"device-manager",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/Skeletor-ai/ioBroker.virtual-devices.git"
},
"engines": {
"node": ">= 20"
},
"dependencies": {
"@iobroker/adapter-core": "^3.3.2",
"@iobroker/dm-utils": "^2.0.1"
},
"devDependencies": {
"@iobroker/dev-server": "^0.8.0",
"@iobroker/testing": "^5.2.2",
"eslint": "^9.15.0"
},
"main": "lib/main.js",
"files": [
"admin/",
"lib/",
"plugins/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test": "mocha --exit --timeout 10000 test/unit.js",
"lint": "eslint lib/ plugins/",
"dev-server": "dev-server"
}
}