-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.09 KB
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
{
"name": "git-panda",
"version": "1.0.0",
"description": "Reminds you to push your code to your git provider (i.e Github)",
"main": "main.js",
"scripts": {
"start": "electron .",
"buildmac": "electron-packager . --out=dist/osx --platform=darwin --overwrite --arch=x64 --icon=icons/mac/icon.icns; node ./buildInstallers/mac/index.js; rm -rf ./dist/osx/git-panda-darwin-x64/",
"buildwin": "electron-packager . --out=dist/win --overwrite --asar=true --platform=win32 --arch=ia32 --icon=icons/win/icon.ico --prune=true --version-string.ProductName='Git Panda'",
"test": "node ./buildInstallers/win/index.js;"
},
"homepage": "https://github.com/olitomas/git-panda/",
"repository": "https://github.com/olitomas/git-panda/",
"keywords": [
"Git",
"Panda",
"git-panda",
"git panda"
],
"author": {
"name": "Óli Tómas Freysson",
"url": "https://olitomas.com/"
},
"license": "Creative Commons Attribution-NonCommercial-ShareAlike 4.0",
"devDependencies": {
"babel-preset-electron": "^1.4.15",
"electron": "^1.7.9",
"path": "^0.12.7"
}
}