-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "Numbas-lockdown",
"productName": "Numbas lockdown",
"author": {
"name": "Numbas",
"email": "numbas@ncl.ac.uk",
"url": "https://www.numbas.org.uk"
},
"license": "Apache-2.0",
"version": "3.0.3",
"homepage": "https://www.numbas.org.uk/lockdown-app",
"description": "A locked-down browser for running Numbas assessments",
"repository": "https://github.com/numbas/numbas-lockdown-app",
"main": "src/main.js",
"devDependencies": {
"electron": "^21.0.0",
"electron-builder": "^23.3.3"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"dist": "electron-builder",
"build_windows": "electron-builder --win portable msi",
"build_mac": "electron-builder --macos --universal",
"build_linux": "electron-builder --linux AppImage deb"
},
"build": {
"files": [
"**/*",
"build/icon.*"
],
"extraFiles": [
"html"
],
"appId": "uk.ac.ncl.mas.e-learning.numbas-lockdown",
"linux": {
"category": "Network",
"target": "deb",
"protocols": [
{"name": "Numbas lockdown", "schemes": ["numbas"]}
]
},
"win": {
"target": "msi"
},
"msi": {
"perMachine": true,
"runAfterFinish": true
},
"mac": {
"category": "public.app-category.education",
"target": [
"dmg"
],
"type": "distribution"
},
"mas": {
"type": "distribution",
"category": "public.app-category.education",
"entitlements": "build/entitlements.mas.plist",
"entitlementsInherit": "build/entitlements.mas.inherit.plist"
}
},
"dependencies": {
"dmg-builder": "^23.5.1",
"electron-prompt": "^1.7.0",
"electron-store": "^8.0.1",
"yarn": "^1.22.4"
}
}