-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "iobroker.echarts",
"version": "1.9.5",
"description": "Build useful charts in ioBroker",
"author": {
"name": "bluefox",
"email": "[email protected]"
},
"homepage": "https://github.com/ioBroker/ioBroker.echarts",
"license": "Apache-2.0",
"keywords": [
"charts",
"diagram",
"ioBroker"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ioBroker/ioBroker.echarts"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"echarts": "^5.5.1",
"jsdom": "^25.0.1"
},
"dependencies": {
"moment": "^2.30.1",
"@iobroker/adapter-core": "^3.1.6"
},
"devDependencies": {
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@iobroker/build-tools": "^1.1.0",
"@iobroker/legacy-testing": "^1.0.13",
"@iobroker/vis-2-widgets-react-dev": "^4.0.3",
"@iobroker/testing": "^5.0.0",
"axios": "^1.7.7",
"colorette": "^2.0.20",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"puppeteer": "^23.11.1",
"mocha": "^10.7.3"
},
"main": "src/main.ts",
"files": [
"admin/",
"img/",
"src-chart/src/Components/ChartModel.js",
"src-chart/src/Components/ChartOption.js",
"widgets/",
"www/",
"io-package.json",
"LICENSE",
"src/main.ts"
],
"scripts": {
"test:package": "mocha test/package --exit",
"test:gui": "mocha ./test/*.gui.js --exit",
"test": "npm run test:package",
"prepublishOnly": "npm run build",
"build": "npm run build:widgets && npm run build:chart && npm run build:preview && npm run build:edit",
"build:widgets": "node tasksWidgets",
"build:chart": "node tasksChart",
"build:preview": "node tasksPreview",
"build:edit": "node tasksEdit.js",
"release": "release-script",
"release-patch": "release-script patch --yes",
"release-minor": "release-script minor --yes",
"release-major": "release-script major --yes",
"update-packages": "ncu --upgrade && cd src && ncu --upgrade && cd .. && cd src-chart && ncu --upgrade && cd .. && cd src-preview && ncu --upgrade && cd .. && cd src-widgets && ncu --upgrade",
"npm": "npm i && cd src && npm i -f && cd ../src-chart && npm i -f && cd ../src-preview && npm i -f && cd ../src-widgets && npm i -f"
},
"bugs": {
"url": "https://github.com/ioBroker/ioBroker.echarts/issues"
},
"readmeFilename": "README.md"
}