-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.24 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.24 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
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
{
"name": "gmail-desktop",
"productName": "Gmail Desktop",
"version": "0.1.8",
"description": "Access your Gmail inbox right from your desktop",
"main": "src/main.js",
"scripts": {
"start": "NODE_ENV=development electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src --color",
"test": "NODE_ENV=test mocha -- src/test/*.js"
},
"keywords": [],
"author": "joaco",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"ignore": [
".idea",
"zips"
],
"executableName": "gmail-desktop",
"packageManager": "npm",
"download": {
"cache": "./zips"
}
},
"electronWinstallerConfig": {
"name": "gmail_desktop"
},
"electronInstallerDebian": {
"icon": "assets/icon_gmail_512.png",
"categories": [
"Utility",
"Network"
]
},
"electronInstallerRedhat": {},
"github_repository": {
"owner": "lt-mayonesa",
"name": "gmail-desktop"
},
"windowsStoreConfig": {
"packageName": "com.joaquincampero",
"name": "gmaildesktop"
}
}
},
"dependencies": {
"electron-compile": "^6.4.4",
"electron-squirrel-startup": "^1.0.0",
"systray": "^1.0.5"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"electron": "^7.2.4",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "4.0.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"spectron": "^5.0.0"
}
}