forked from webschuppen/mitetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.34 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.34 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
59
60
61
62
63
64
{
"name": "mitetracker",
"version": "1.0.4",
"description": "A Mite Application",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build",
"publish": "build -p always"
},
"provider": "github",
"releaseType": "release",
"build": {
"appId": "12312312312",
"win": {
"target": "squirrelWindows",
"icon": "build/icon.ico"
},
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
],
"type": "distribution"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 275
},
{
"x": 500,
"y": 275,
"type": "link",
"path": "/Applications"
}
]
}
},
"repository": "https://github.com/webschuppen/mitetracker",
"keywords": [
"Electron"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^3.0.10",
"electron-builder": "^20.38.2"
},
"dependencies": {
"electron-builder-squirrel-windows": "^20.33.2",
"electron-fetch": "^1.1.0",
"electron-json-storage": "^4.1.0",
"electron-log": "^2.2.17",
"electron-prompt": "^0.5.0",
"electron-store": "^1.3.0",
"electron-updater": "^4.0.5",
"mite-api": "^0.1.0"
}
}