-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 911 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 911 Bytes
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
{
"name": "barmaid",
"version": "1.1.0",
"description": "An easy to use web server in your system tray",
"main": "src/main/main.js",
"scripts": {
"start": "electron src/main/main.js",
"dist": "build"
},
"author": "Benjamin Bini",
"repository": {
"type": "git",
"url": "https://github.com/BenjaminBini/barmaid"
},
"license": "MIT",
"dependencies": {
"app-root-path": "^1.0.0",
"express": "^4.14.0",
"extend": "^3.0.0",
"node-uuid": "^1.4.7",
"pug": "^2.0.0-beta4"
},
"devDependencies": {
"electron": "^1.4.15",
"electron-builder": "^12.3.1"
},
"optionnalDependencies": {
"7zip-bin-win": "^2.0.2"
},
"build": {
"appId": "bini.barmaid",
"mac": {
"target": ["dmg", "zip", "7z"]
},
"win": {
"target": ["nsis", "zip", "7z"]
},
"linux": {
"target": ["AppImage", "deb", "7z", "zip"]
}
}
}