-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
77 lines (77 loc) · 2.05 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
{
"name": "iobroker.denon",
"version": "1.15.12",
"engines": {
"node": ">=18.0.0"
},
"description": "ioBroker DENON/Marantz Adapter",
"author": {
"name": "Moritz Heusinger",
"email": "[email protected]"
},
"contributors": [
{
"name": "Moritz Heusinger",
"email": "[email protected]"
}
],
"homepage": "https://github.com/foxriver76/ioBroker.denon",
"license": "MIT",
"keywords": [
"ioBroker",
"denon",
"marantz",
"avr",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/foxriver76/ioBroker.denon"
},
"dependencies": {
"@iobroker/adapter-core": "^3.1.6"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@iobroker/testing": "^4.1.3",
"@iobroker/types": "^6.0.9",
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"axios": "^1.7.2",
"chai": "^4.3.6",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gulp": "^4.0.2",
"mocha": "^10.7.0",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"main": "build/main.js",
"scripts": {
"prebuild": "rimraf ./build",
"build:ts": "tsc -p tsconfig.build.json",
"build": "npm run build:ts",
"check": "tsc --noEmit",
"test:package": "mocha -r ts-node/register test/packageFiles.ts --exit",
"test:integration": "mocha -r ts-node/register test/integrationAdapter.ts --exit",
"test": "mocha -r ts-node/register test/*.ts --exit",
"lint": "eslint src/",
"release": "release-script -p iobroker --noPush -y"
},
"bugs": {
"url": "https://github.com/foxriver76/ioBroker.denon/issues"
},
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*).json",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"io-package.json",
"build/main.js",
"build/lib",
"LICENSE"
]
}