-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "iobroker.owfs",
"description": "This adapter enable read and control of 1wire sensors over owfs server from ioBroker.",
"version": "0.7.0",
"author": "bluefox <[email protected]>",
"contributors": [
"bluefox <[email protected]>"
],
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/ioBroker/ioBroker.owfs",
"license": "MIT",
"keywords": [
"ioBroker",
"owfs",
"1wire",
"home automation",
"IoT"
],
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.owfs"
},
"dependencies": {
"owjs": "^0.1.1",
"@iobroker/adapter-core": "^3.1.6"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/testing": "^4.1.3",
"mocha": "^10.8.2",
"chai": "^4.5.0"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.owfs/issues"
},
"main": "main.js",
"files": [
"admin/",
"lib/",
"main.js",
"io-package.json",
"LICENSE"
],
"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",
"release": "release-script"
}
}