-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "jira-client",
"version": "1.0.1",
"description": "Electron wrapper for Jira",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release-win": "electron-builder --win --publish always"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"jira client",
"jira"
],
"author": "Dalpat Singh <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "com.innowaysit.jiraclient",
"linux": {
"category": "Development",
"icon": "build/icon/",
"target": [
"AppImage",
"deb"
]
},
"win": {
"artifactName": "${productName} Setup ${version} ${arch}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
}
}
}