This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 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
{
"name": "metrogit",
"version": "0.4.0",
"description": "Metro themed git UI",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"test": "./test.sh",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish never"
},
"repository": {
"type": "git",
"url": "https://github.com/Yamazaki93/MetroGit.git"
},
"author": {
"name": "Michael Lu",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"electron": "^1.8.4",
"electron-builder": "^20.10.0"
},
"build": {
"appId": "com.rhodiumcode.metrogit",
"productName": "MetroGit",
"directories": {
"buildResources": "build"
},
"publish": {
"provider": "github"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "build/icon.icns",
"category": "public.app-category.developer-tools",
"publish": {
"provider": "github"
}
},
"linux": {
"target": "deb",
"category": "Development",
"publish": {
"provider": "github"
}
},
"nsis": {
"license": "../LICENSE"
},
"extends": null
},
"dependencies": {
"axios": "^0.18.0",
"electron-updater": "^3.0.3",
"get-folder-size": "^2.0.0",
"keytar": "^4.2.1",
"nodegit": "^0.22.0",
"read-last-line": "^1.1.0",
"uuid": "^3.2.1"
}
}