-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.41 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
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
{
"name": "iobroker.senec",
"version": "2.14.1",
"description": "Senec Home",
"author": {
"name": "NoBl",
"email": "github@bluemle.org"
},
"contributors": [
{
"name": "NoBl",
"email": "github@bluemle.org"
}
],
"homepage": "https://github.com/nobl/ioBroker.senec",
"license": "MIT",
"keywords": [
"ioBroker",
"senec",
"solar",
"photovoltaic"
],
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/nobl/ioBroker.senec.git"
},
"dependencies": {
"@iobroker/adapter-core": "^3.4.3",
"axios": "^1.19.0",
"axios-cookiejar-support": "^7.0.0",
"tough-cookie": "^6.0.2"
},
"devDependencies": {
"@alcalzone/release-script": "^5.2.1",
"@alcalzone/release-script-plugin-iobroker": "^5.2.0",
"@alcalzone/release-script-plugin-license": "^5.2.2",
"@alcalzone/release-script-plugin-manual-review": "^5.2.0",
"@iobroker/adapter-dev": "^1.5.0",
"@iobroker/eslint-config": "^2.3.4",
"@iobroker/testing": "^5.3.0",
"@iobroker/types": "^7.2.2",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^22",
"@types/proxyquire": "^1.3.31",
"globals": "^17.9.0",
"mustache": "^4.2.0",
"proxyquire": "^2.1.3",
"typescript": "~6.0.3"
},
"main": "main.js",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"lib/",
"www/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test:js": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,*.test.js,test/**/test!(PackageFiles|Startup|PureFunctions).js}\"",
"test:unit": "mocha --config test/mocharc.custom.json test/testPureFunctions.js --exit --fail-zero",
"test:package": "mocha test/package --exit --fail-zero",
"test:integration": "mocha test/integration --exit --fail-zero",
"test": "npm run test:unit && npm run test:js && npm run test:package",
"check": "tsc --noEmit -p tsconfig.check.json",
"lint": "eslint -c eslint.config.mjs .",
"translate": "translate-adapter && translate-adapter -a www",
"release": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes"
},
"bugs": {
"url": "https://github.com/nobl/ioBroker.senec/issues"
},
"readmeFilename": "README.md"
}