-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1000 Bytes
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
{
"name": "gitty",
"productName": "Gitty",
"version": "0.1.0",
"description": "Unofficial Github client for Ubuntu",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-packager . app --platform linux --icon ./app/assets/img/logo.png --arch x64 --out dist/",
"deb64": "electron-installer-debian --src dist/app-linux-x64/ --dest dist/installers/ --arch amd64"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanskar-modi/gitty.git"
},
"keywords": [
"Electron",
"Github",
"Client",
"Ubuntu"
],
"author": "Sanskar Modi",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanskar-modi/gitty/issues"
},
"homepage": "https://github.com/sanskar-modi/gitty",
"dependencies": {
"highlight.js": "^9.4.0",
"nconf": "^0.8.4",
"shelljs": "^0.7.0"
},
"devDependencies": {
"devtron": "^1.2.0",
"electron-installer-debian": "^0.3.0",
"electron-prebuilt": "^1.2.1"
}
}