-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "HotGifs",
"description": "Hot Gifs is the quickest way to find great gifs on your computer.",
"author": "Jason Stallings <octalmage@gmail.com>",
"main": "main.js",
"version": "0.3.3",
"window": {
"title": "Hot Gifs",
"toolbar": false,
"frame": false,
"width": 500,
"height": 60,
"resizable": false,
"always-on-top": true,
"position": "center",
"show": false,
"show_in_taskbar": false
},
"scripts": {
"start": "electron .",
"test": "npm run eslint",
"eslint": "eslint ./**/*.js",
"build": "electron-builder --mac --linux",
"pack": "electron-builder --mac --linux --dir"
},
"license": "GPL-3.0",
"dependencies": {
"auto-launch": "^5.0.1",
"configstore": "^2.0.0",
"node-fetch": "^1.7.3",
"riot": "^3.7.0",
"universal-analytics": "^0.3.9"
},
"devDependencies": {
"electron": ">=1.7.16",
"electron-builder": "^20.38.3",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-riot": "^0.1.7"
},
"build": {
"asar": true,
"directories": {
"buildResources": "resources",
"output": "build"
},
"mac": {
"icon": "./logo.icns",
"target": [
{
"target": "zip",
"arch": [
"x64"
]
}
]
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64",
"ia32"
]
}
]
},
"publish": {
"provider": "github",
"owner": "octalmage"
}
}
}