-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 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
{
"name": "alma-print-daemon",
"version": "2.2.0",
"description": "Alma Print Daemon",
"main": "main.js",
"dependencies": {
"almarestapi-lib": "^1.1.4",
"async": "^3.2.2",
"electron-edge-js": "^12.16.3",
"electron-log": "^4.3.5",
"electron-notarize": "^0.2.1",
"electron-updater": "^4.3.4",
"html-pdf": "^3.0.1",
"node-native-printer": "^1.0.0-beta.5",
"temp": "^0.9.4"
},
"devDependencies": {
"electron": "^9.4.2",
"electron-builder": "^22.9.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron ."
},
"build": {
"npmArgs": "--production",
"nsis": {
"runAfterFinish": "false",
"oneClick": "false",
"perMachine": "false"
},
"extraFiles": [
{
"from": "lib",
"to": "lib",
"filter": [
"**/*"
]
}
],
"afterSign": "scripts/notarize.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ExLibrisGroup/alma-print-daemon.git"
},
"author": "",
"license": "ISC"
}