-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
132 lines (132 loc) · 3.55 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "iobroker.tradfri",
"version": "3.1.3",
"description": "ioBroker tradfri Adapter",
"author": {
"name": "AlCalzone",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/AlCalzone/ioBroker.tradfri/issues"
},
"contributors": [
{
"name": "AlCalzone",
"email": "[email protected]"
}
],
"files": [
"build/",
"admin/build/",
"admin/icons/",
"admin/*.{html,css,js,png}",
"LICENSE",
"io-package.json"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"@iobroker/adapter-core": "^2.6.6",
"alcalzone-shared": "^4.0.8",
"node-tradfri-client": "^3.1.1"
},
"devDependencies": {
"@alcalzone/release-script": "~3.5.9",
"@alcalzone/release-script-plugin-iobroker": "~3.5.9",
"@alcalzone/release-script-plugin-license": "~3.5.9",
"@alcalzone/release-script-plugin-manual-review": "~3.5.9",
"@iobroker/adapter-dev": "^1.0.1",
"@iobroker/testing": "^2.6.0",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/jquery": "^3.5.14",
"@types/materialize-css": "^1.0.11",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.38",
"@types/react": "^18.0.21",
"@types/react-dom": "^17.0.14",
"@types/sinon": "^10.0.9",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"iobroker-react-components": "^1.0.0",
"jquery": "^3.6.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"sinon": "^15.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"homepage": "https://github.com/AlCalzone/ioBroker.tradfri",
"keywords": [
"ioBroker",
"tradfri",
"Smart Home",
"home automation"
],
"license": "MIT",
"main": "build/main.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/AlCalzone/ioBroker.tradfri"
},
"scripts": {
"prebuild": "rimraf build admin/build",
"build": "build-adapter all",
"watch": "build-adapter all --watch",
"prebuild:ts": "rimraf build",
"build:ts": "build-adapter ts",
"watch:ts": "build-adapter ts --watch",
"prebuild:react": "rimraf admin/build",
"build:react": "build-adapter react",
"watch:react": "build-adapter react --watch",
"check": "tsc -p tsconfig.build.json --noEmit",
"test:unit": "mocha test/unit --exit",
"test:package": "mocha test/package --exit",
"test:integration": "mocha test/integration --exit",
"test:ts": "mocha --require ts-node/register --require source-map-support/register src/**/*.test.ts",
"test": "npm run test:ts ",
"prepublishOnly": "npm run test:package",
"coverage": "nyc npm run test",
"lint:ts": "eslint --ext .ts src",
"lint": "npm run lint:ts",
"translate": "translate-adapter translate",
"release": "release-script"
},
"nyc": {
"include": [
"src/**/*.ts",
"admin/src/**/*.ts*"
],
"exclude": [
"src/**/*.test.ts*",
"admin/src/**/*.test.ts*"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}