-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "wireless-microphone-analyzer",
"productName": "Wireless Microphone Analyzer",
"version": "2.3.0",
"license": "CC0-1.0",
"description": "Uses RF-Explorer or TinySA spectrum analyzer hardware to check for free/congested wireless microphone frequencies",
"author": "Bernd Konnerth <bernd@konnerth.de>",
"main": "main.js",
"repository": "https://github.com/berkon/wireless-microphone-analyzer",
"keywords": [
"wireless",
"microphone",
"spectrum",
"analyzer"
],
"devDependencies": {
"@kayahr/jest-electron-runner": "^29.14.0",
"electron": "^18.3.15",
"electron-builder": "24.9.1",
"jest": "^29.7.0"
},
"dependencies": {
"@electron/remote": "^2.1.1",
"archiver": "^7.0.1",
"chart.js": "^2.7.3",
"configstore": "^4.0.0",
"electron-localshortcut": "^3.1.0",
"moment-timezone": "^0.5.45",
"node-abi": "^3.40.0",
"require-all": "^3.0.0",
"rxjs": "^7.8.1",
"serialport": "12.0.0",
"sweetalert2": "^11.10.2",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"jest": {
"projects": [
{
"testMatch": ["<rootDir>/main.spec.js"],
"runner": "@kayahr/jest-electron-runner/main",
"testEnvironment": "node"
},
{
"testMatch": ["<rootDir>/**/*.spec.js"],
"testPathIgnorePatterns": ["<rootDir>/main.spec.js"],
"runner": "@kayahr/jest-electron-runner",
"testEnvironment": "@kayahr/jest-electron-runner/environment"
}
]
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "node_modules\\electron\\dist\\electron.exe .",
"start_mac": "node_modules/electron/dist/Electron.app/Contents/MacOS/Electron .",
"start_linux": "node_modules/electron/dist/electron .",
"install_start": "npm install && node_modules\\electron\\dist\\electron.exe .",
"pack": "build --dir",
"dist": "electron-builder",
"test:debug": "jest",
"test": "jest --silent"
},
"build": {
"appId": "wireless-microphone-analyzer",
"win": {
"target": "nsis",
"icon": "build/microphone-wave.ico"
},
"linux": {
"icon": "./build/icons",
"category": "Utility",
"target": [
"AppImage",
"deb"
]
},
"mac": {
"target": "dmg",
"icon": "build/microphone-wave.png"
}
}
}