-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "Contrast",
"version": "0.2.0",
"description": "A git diff tool",
"author": "Stewart Lord",
"license": "MIT",
"homepage": "https://github.com/stewartlord/contrast#readme",
"repository": "https://github.com/stewartlord/contrast.git",
"keywords": [
"Contrast",
"diff",
"electron"
],
"main": "main.js",
"scripts": {
"start": "electron . --dev",
"pack": "build --dir",
"dist": "mkdir build; cp icon.png build/; build"
},
"bugs": {
"url": "https://github.com/stewartlord/contrast/issues"
},
"postinstall": "install-app-deps",
"dependencies": {
"diff": "^3.4.0",
"font-awesome": "^4.7.0",
"fs-extra": "^5.0.0",
"highlights": "^3.0.0",
"jquery": "^3.2.0",
"nodegit": "git+https://github.com/nodegit/nodegit.git#4561dcb7c120474a4553baa27e4c4c2f4be23a2b",
"vue": "^2.3.3",
"vuex": "^2.3.1",
"vuex-persistedstate": "^2.0.0"
},
"devDependencies": {
"electron": "15.3.1",
"electron-builder": "22.13.1",
"electron-rebuild": "3.2.4"
},
"build": {
"appId": "contrast",
"mac": {
"category": "public.app-category.developer-tools"
},
"dmg": {
"contents": [
{
"type": "file",
"x": 135,
"y": 365
},
{
"type": "link",
"path": "/Applications",
"x": 405,
"y": 365
}
]
}
}
}