-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "active911-hud",
"version": "0.0.1",
"main": "app/application.js",
"license": "Apache-2.0",
"description": "A friendly Heads Up Display (HUD) for viewing current call details and response status of personnel",
"author": "Brett P <bap14@users.noreply.github.com>",
"repository": "https://github.com/bap14/active911-hud.git",
"build": {
"appId": "com.github.users.noreply.bap14.active911-hud",
"productName": "Active911 HUD",
"copyright": "Copyright © 2018 ${author}",
"win": {
"target": "nsis",
"icon": "build/icons/win/active911.ico"
},
"nsis": {
"installerIcon": "build/icons/win/active911.ico",
"uninstallerIcon": "build/icons/win/active911.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Active911 HUD"
},
"mac": {
"target": "dmg",
"icon": "build/icons/mac/active911.icns"
},
"dmg": {
"background": "build/icons/png/256x256.png"
}
},
"scripts": {
"build": "npm run prebuild && node lib/build.js",
"clean": "node lib/clean.js",
"prebuild": "npm run clean",
"install": "electron-builder install-app-deps",
"start": "npm run build && electron .",
"pack": "npm run prebuild && npm run build && electron-builder --dir",
"dist": "npm run prebuild && npm run build && electron-builder"
},
"devDependencies": {
"copy": "^0.3.1",
"copy-files": "^0.1.0",
"electron": "^1.8.2",
"electron-builder": "^20.2.0",
"less": "^2.7.3",
"less-plugin-clean-css": "^1.5.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"shelljs": "^0.8.0"
}
}