-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "iobroker.template",
"version": "0.0.1",
"description": "Template for adapter development",
"author": {
"name": "Author",
"email": "[email protected]"
},
"homepage": "https://github.com/Author/ioBroker.template",
"license": "MIT",
"keywords": [
"ioBroker",
"template",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/Author/ioBroker.template.git"
},
"engines": {
"node": ">= 20"
},
"dependencies": {},
"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/testing": "^4.1.3"
},
"main": "widgets/template.html",
"files": [
"widgets/**/!(tsconfig|tsconfig.*|.eslintrc).json",
"widgets/**/*.{html,css,png,svg,jpg,js}",
"www/",
"io-package.json",
"LICENSE"
],
"scripts": {
"test:package": "mocha test/package --exit",
"test": "npm run test:package",
"translate": "translate-adapter",
"release": "release-script"
},
"bugs": {
"url": "https://github.com/Author/ioBroker.template/issues"
},
"readmeFilename": "README.md"
}