-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 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
{
"name": "fedora-mime",
"version": "3.0.0",
"description": "Fedora Mirror Measure(MiMe) is a tool to measure Fedora Linux mirror speed",
"main": "electron.js",
"homepage": "https://fardinkamal62.github.io/projects/mime",
"dependencies": {
"electron-reloader": "^1.2.3",
"jssoup": "^0.0.15",
"node-fetch": "^2.6.1",
"node-html-parser": "^6.1.5"
},
"devDependencies": {
"electron": "^24.2.0",
"electron-builder": "^23.6.0"
},
"scripts": {
"electron:run": "electron .",
"build:linux": "electron-builder build --linux --x64",
"build:windows": "electron-builder build --win --x64"
},
"build": {
"appId": "com.fardinkamal62.mime",
"productName": "Fedora MiMe",
"linux": {
"target": [
"AppImage",
"rpm"
],
"category": "Utility"
},
"win": {
"target": [
"portable"
]
},
"directories": {
"output": "build"
}
},
"keywords": [
"fedora",
"linux",
"mirror",
"speedtest"
],
"author": {
"name": "Fardin Kamal",
"email": "fardinkamal62@pm.me",
"url": "https://fardinkamal62.github.io"
},
"license": "GPL-3.0"
}