-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "iobroker.solarviewdatareader",
"version": "1.2.0",
"description": "Get data from SolarView",
"author": {
"name": "Achim Fürhoff",
"email": "achim.fuerhoff@outlook.de"
},
"homepage": "https://github.com/afuerhoff/ioBroker.solarviewdatareader",
"license": "MIT",
"keywords": [
"ioBroker",
"SolarView",
"Data Logger",
"Photovoltaik"
],
"repository": {
"type": "git",
"url": "https://github.com/afuerhoff/ioBroker.solarviewdatareader"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.3"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
"@iobroker/adapter-dev": "^1.3.0",
"@iobroker/eslint-config": "^1.0.0",
"@iobroker/testing": "^5.0.3",
"@tsconfig/node18": "^18.2.4",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.19",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"mocha": "^10.8.2",
"rimraf": "^5.0.10",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"main": "build/main.js",
"type": "commonjs",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*).json",
"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",
"devserver:debug": "dev-server debug --wait",
"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 ./src/main.ts",
"translate": "translate-adapter",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes"
},
"bugs": {
"url": "https://github.com/afuerhoff/ioBroker.solarviewdatareader/issues"
},
"readmeFilename": "README.md",
"engines": {
"node": ">=18"
}
}