-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.89 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
{
"name": "gitview",
"productName": "GitView",
"version": "1.0.1",
"description": "A visualization tool for Git repositories.",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"package-linux": "asar pack release-builds/GitView-linux-x64/resources/app release-builds/GitView-linux-x64/resources/app.asar",
"package-win": "asar pack release-builds/GitView-win32-x64/resources/app release-builds/GitView-win32-x64/resources/app.asar",
"package-mac": "asar pack release-builds/GitView-darwin-x64/GitView.app/Contents/Resources/app release-builds/GitView-darwin-x64/GitView.app/Contents/Resources/app.asar",
"build-linux": "electron-packager . GitView --overwrite --platform=linux --arch=x64 --prune=true --out=release-builds",
"build-win": "electron-packager . GitView --overwrite --platform=win32 --arch=x64 --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName='GitView'",
"build-mac": "electron-packager . --platform=darwin --arch=x64 --prune=true --out=release-builds --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhtoshiaki/GitView.git"
},
"author": "nhtoshiaki <nh_toshi.94@hotmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nhtoshiaki/GitView/issues"
},
"homepage": "https://github.com/nhtoshiaki/GitView/Source#readme",
"dependencies": {
"asar": "^0.14.3",
"async": "^2.6.0",
"d3": "^4.12.2",
"dateformat": "^3.0.2",
"electron": "1.8.4",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"nodegit": "^0.20.3"
},
"devDependencies": {
"electron-packager": "^10.1.1",
"electron-rebuild": "^1.7.3",
"grunt": "^1.0.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-run": "^0.8.0"
}
}