-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "CE-Deploy",
"version": "2.0.9",
"description": "Deployment app for Cisco Video Endpoints",
"main": "lib/main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron ./lib/main",
"pack": "build --dir",
"dist": "build"
},
"repository": "https://github.com/voipnorm/InRoom-Macro-Deployer.git",
"keywords": [],
"author": "Chris Norman",
"license": "MIT",
"devDependencies": {
"electron": "^4.2.12",
"electron-builder": "^20.44.4"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"bootstrap": "^4.3.1",
"electron-log": "^3.0.8",
"exceljs": "^1.15.0",
"jquery": "^3.4.1",
"popper.js": "^1.16.0",
"request": "^2.88.0"
},
"build": {
"appId": "com.electron.CEDeploy",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
}
}