-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
{
"name": "iobroker.sonnen",
"version": "1.18.1",
"engines": {
"node": ">=16.0.0"
},
"description": "sonnen",
"author": {
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
},
"contributors": [
{
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
}
],
"homepage": "https://github.com/foxriver76/ioBroker.sonnen",
"license": "MIT",
"keywords": [
"ioBroker",
"sonnen",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/foxriver76/ioBroker.sonnen"
},
"dependencies": {
"@iobroker/adapter-core": "^3.0.6",
"axios": "^1.6.8"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@foxriver76/eslint-config": "^1.0.2",
"@iobroker/testing": "^4.1.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"main": "build/main.js",
"scripts": {
"prebuild": "rimraf ./build",
"build:ts": "tsc -p tsconfig.build.json",
"build": "npm run build:ts",
"test:unit": "mocha test/unitAdapter --exit",
"test:package": "mocha test/packageFiles --exit",
"test:integration": "mocha test/integrationAdapter --exit",
"test": "mocha --exit",
"release": "release-script -p iobroker"
},
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*).json",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"io-package.json",
"build/main.js",
"build/lib",
"LICENSE",
"widgets"
],
"bugs": {
"url": "https://github.com/foxriver76/ioBroker.sonnen/issues"
},
"readmeFilename": "README.md"
}