-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "gief",
"productName": "Gief",
"version": "0.1.0",
"description": "All your favourite gifs in the menu bar",
"author": {
"name": "Patrik Affentranger",
"email": "[email protected]",
"url": "http://patrikaffentranger.me"
},
"repository": {
"type": "git",
"url": "https://github.com/pzi/gief"
},
"bugs": "https://github.com/pzi/gief/issues",
"homepage": "https://github.com/pzi/gief",
"main": "main.js",
"private": true,
"scripts": {
"build:base": "electron-packager . --out=_dist --arch=x64 ----electron-version=6.0.11 --overwrite --no-prune",
"build:mac": "yarn run build:base --platform=darwin --icon=TempIcon.icns",
"build:win": "yarn run build:base --platform=win32",
"build": "yarn run build:mac && yarn run build:win",
"start": "electron --js-flags=\"--harmony\" .",
"test": "standard"
},
"keywords": [
"gif",
"menubar"
],
"license": "WTFPL",
"dependencies": {
"debounce": "^1.0.0",
"menubar": "^6.0.0"
},
"devDependencies": {
"electron": "^6.0.0",
"electron-packager": "^14.0.0",
"standard": "^14.3.1"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "always"
}
}