-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 1.99 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
{
"name": "iobroker.xbox",
"version": "1.1.0",
"engines": {
"node": ">=16.0.0"
},
"description": "ioBroker Xbox Adapter",
"author": {
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
},
"contributors": [
{
"name": "Moritz Heusinger",
"email": "moritz.heusinger@gmail.com"
}
],
"homepage": "https://github.com/foxriver76/ioBroker.xbox",
"license": "MIT",
"keywords": [
"ioBroker",
"xbox",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/foxriver76/ioBroker.xbox"
},
"dependencies": {
"@iobroker/adapter-core": "^3.0.3",
"xbox-smartglass-core-node": "^0.6.10",
"xbox-webapi": "^1.4.1"
},
"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": "node node_modules/mocha/bin/mocha --exit",
"release": "release-script -p iobroker"
},
"devDependencies": {
"@alcalzone/release-script": "^3.5.9",
"@alcalzone/release-script-plugin-iobroker": "^3.5.9",
"@iobroker/testing": "^4.1.0",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"main": "build/main.js",
"bugs": {
"url": "https://github.com/foxriver76/ioBroker.xbox/issues"
},
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*).json",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"io-package.json",
"build/main.js",
"build/lib",
"LICENSE"
],
"readmeFilename": "README.md"
}