-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 962 Bytes
/
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
{
"name": "gitw",
"main": "index.html",
"version": "0.6.1",
"author": {
"name": "Demián Rodriguez",
"email": "[email protected]"
},
"keywords": [
"git",
"gui",
"diff",
"tool",
"commit",
"push",
"realtime",
"nw.js"
],
"description": "Git GUI desktop app that shows real-time diff file information for working directory and index",
"contributors": [
{
"name": "Demián Rodriguez",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/demian85/git-watcher.git"
},
"dependencies": {
"async": "0.9.x",
"git-utils": "3.0.x",
"json-toolkit": "1.1.x",
"lodash": "^2.4.1",
"mime-types": "1.0.x"
},
"window": {
"title": "Git Watcher",
"icon": "icons/git-watcher.png",
"width": 1024,
"min_width": 800,
"height": 600,
"min_height": 400,
"position": "center",
"toolbar": false
}
}