-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
78 lines (78 loc) · 1.63 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
{
"name": "hanmatek-hm310p",
"version": "1.0.0",
"private": true,
"description": "Electron based application for the Hanmatek HM310P DC Power Supply, offers Charts and CSV Export.",
"keywords": [
"hanmatek",
"hm310p",
"charts",
"csv",
"dc",
"power supply"
],
"main": "index.js",
"scripts": {
"start": "electron .",
"test": "xo",
"lintfix": "xo --fix",
"dist": "electron-builder build",
"postinstall": "electron-builder install-app-deps"
},
"author": {
"name": "Sebastian Raff",
"email": "[email protected]",
"url": "https://github.com/hobbyquaker"
},
"homepage": "https://github.com/hobbyquaker/hanmatek-hm310p",
"license": "MIT",
"dependencies": {
"electron-is-dev": "^1.2.0",
"electron-json-storage": "^4.2.0",
"electron-window-state": "^5.0.3",
"@fortawesome/fontawesome-free": "^5.14.0",
"bootstrap": "^4.5.0",
"dseg": "^0.46.0",
"highcharts": "^8.1.2",
"jquery": "^3.5.1",
"modbus-serial": "^8.0.0",
"popper.js": "^1.16.1"
},
"devDependencies": {
"electron": "^9.1.0",
"electron-builder": "^22.7.0",
"xo": "^0.32.1"
},
"xo": {
"space": 4,
"rules": {
"capitalized-comments": 0,
"spaced-comment": 0,
"unicorn/prevent-abbreviations": 0,
"import/no-unassigned-import": 0
},
"global": [
"document"
]
},
"build": {
"productName": "HM310P",
"mac": {
"target": [
"dmg"
]
},
"linux": {
"target": [
"deb",
"tar.gz"
]
},
"win": {
"target": [
"nsis",
"portable"
]
}
}
}