-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
26 lines (26 loc) · 869 Bytes
/
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
{
"name": "office-365-mail-electron",
"version": "1.0.0",
"description": "Office 365 Mail - Electron App",
"main": "main.js",
"repository": "https://github.com/monojack/office-365-mail-electron.git",
"author": "Ionut Achim <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"electron": "^1.6.11",
"electron-builder": "^19.19.1",
"electron-packager": "^8.7.2",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
},
"scripts": {
"start": "electron .",
"package": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=assets/outlook.png --prune=true --out=dist",
"build": "electron-builder --linux deb tar.xz"
}
}