This repository has been archived by the owner on Apr 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
116 lines (116 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"private": true,
"name": "inboxer",
"productName": "Inboxer",
"version": "1.3.2",
"description": "Simple client for Google Inbox",
"author": {
"name": "Denys Dovhan",
"email": "denysdovhan@gmail.com",
"url": "https://denysdovhan.com"
},
"license": "MIT",
"homepage": "https://denysdovhan.com/inboxer",
"repository": {
"type": "git",
"url": "https://github.com/denysdovhan/inboxer.git"
},
"bugs": {
"url": "https://github.com/denysdovhan/inboxer/issues"
},
"keywords": [
"client",
"inbox",
"gmail",
"electron",
"app"
],
"main": "app/main",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron app/main",
"lint": "eslint app",
"lint:fix": "npm run lint -- --fix",
"test": "npm-run-all lint",
"pack": "electron-builder --dir",
"dist": "npm-run-all test dist:*",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"dist:win": "electron-builder --win",
"format": "prettier-eslint --write app/**/*.js",
"icon": "npm-run-all icon:*",
"icon:icns": "png2icns app/static/Icon@2x.png -o build/icon.icns",
"icon:ico": "png2icons app/static/Icon@2x.png build/icon -ico"
},
"devDependencies": {
"electron": "^3.0",
"electron-builder": "^20.39.0",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"lint-staged": "^6.0.0",
"npm-run-all": "^4.1.2",
"png2icns": "0.0.1",
"png2icons": "^0.9.1",
"prettier-eslint-cli": "^4.7.1"
},
"dependencies": {
"asar": "^1.0.0",
"electron-context-menu": "^0.11.0",
"electron-dl": "^1.13.0",
"electron-is-dev": "^1.0.1",
"electron-log": "^3.0.1",
"electron-store": "^2.0.0",
"electron-updater": "^4.0.0",
"first-run": "^1.2.0",
"insight": "^0.10.1",
"minimatch-all": "^1.1.0"
},
"build": {
"appId": "com.denysdovhan.inboxer",
"files": [
"**/*"
],
"mac": {
"category": "public.app-category.social-networking",
"target": [
"dmg",
"zip"
]
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb",
"snap"
]
},
"win": {
"target": [
"nsis"
]
}
},
"lint-staged": {
"app/**/*.js": [
"lint",
"format"
]
}
}