forked from iobroker-community-adapters/ioBroker.rpi2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.47 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
{
"name": "iobroker.rpi2",
"description": "RPI-Monitor for ioBroker Installations",
"version": "1.2.0",
"engines": {
"node": ">=4"
},
"author": {
"name": "husky-koglhof",
"email": "[email protected]"
},
"contributors": [
"versteckt <[email protected]>"
],
"optionalDependencies": {
"rpi-gpio": "^2.1.3"
},
"dependencies": {
"sync-exec": "^0.6.2",
"@iobroker/adapter-core": "^2.3.1"
},
"devDependencies": {
"gulp": "^4.0.2",
"mocha": "^7.1.2",
"chai": "^4.2.0",
"axios": "^0.19.2",
"@iobroker/testing": "^2.2.0"
},
"homepage": "https://github.com/iobroker-community-adapters/ioBroker.rpi2",
"license": "MIT",
"keywords": [
"ioBroker",
"monitoring",
"raspberry",
"orangepi",
"odroid",
"bananapi"
],
"repository": {
"type": "git",
"url": "https://github.com/iobroker-community-adapters/ioBroker.rpi2"
},
"os": [
"linux"
],
"bugs": {
"url": "https://github.com/iobroker-community-adapters/ioBroker.rpi2/issues"
},
"main": "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"
},
"readmeFilename": "README.md"
}