-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 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
{
"name": "iobroker.vis-2-widgets-material",
"version": "1.6.1",
"description": "ioBroker vis2 material widgets",
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
"bluefox <dogafox@gmail.com>"
],
"homepage": "https://github.com/ioBroker/ioBroker.vis-2-widgets-material",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.vis-2-widgets-material"
},
"keywords": [
"ioBroker",
"weather",
"home automation",
"vis-2-widgets-material"
],
"devDependencies": {
"@alcalzone/release-script": "^5.1.1",
"@alcalzone/release-script-plugin-iobroker": "^5.1.2",
"@alcalzone/release-script-plugin-license": "^5.1.1",
"@iobroker/build-tools": "^3.0.1",
"@iobroker/eslint-config": "^2.2.0",
"@iobroker/testing": "^5.2.2",
"@iobroker/vis-2-widgets-testing": "^1.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0"
},
"files": [
"admin/",
"img/",
"io-package.json",
"LICENSE",
"widgets/"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint -c eslint.config.mjs",
"test:integration": "mocha test/widgets.test --exit",
"test:package": "mocha test/package.test --exit",
"build": "node tasks",
"copy-files": "node tasks --copy-files",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"test": "npm run test:integration && npm run test:package",
"update-packages": "npx -y npm-check-updates --upgrade && cd src-widgets && npx -y npm-check-updates --upgrade",
"npm": "npm i && cd src-widgets && npm i -f"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.vis-2-widgets-material/issues"
},
"readmeFilename": "README.md"
}