-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "Assessorator",
"version": "0.9.1",
"description": "An application designed manage multiple choice question banks, generate assessments and export in edX format.",
"main": "main.js",
"author": "Matt Lyons <[email protected]>",
"scripts": {
"start": "electron main.js",
"pack": "build --dir",
"release": "build --windows --linux -p never;./build/dist.sh "
},
"dependencies": {
"angular": "~1.6.4",
"angular-animate": "~1.6.4",
"angular-aria": "~1.6.4",
"angular-bootstrap-contextmenu": "~0.9.9",
"angular-material": "~1.1.3",
"angular-messages": "~1.6.4",
"angular-route": "~1.6.4",
"angular-sanitize": "~1.6.4",
"angular-touch": "~1.6.4",
"angular-ui-bootstrap": "~2.5.0",
"appdirectory": "~0.1.0",
"autosize": "^3.0.20",
"bootstrap": "~3.3.7",
"electron-auto-updater": "~1.0.0",
"electron-log": "~2.2.3",
"electron-window-state": "~4.1.0",
"md5": "~2.2.1",
"mkdirp": "~0.5.1",
"ng-toast": "~2.0.0",
"ui-select": "~0.19.6"
},
"devDependencies": {
"electron": "1.6.6",
"electron-builder": "~15.6.2",
"devtron": "^1.3.0"
},
"build": {
"appId": "com.mattlyons.assessorator",
"files": [
"!exports${/*}",
"!build${/*}"
],
"asar": true,
"compression": "maximum",
"publish": {
"provider": "generic",
"owner": "Matt Lyons",
"url": "https://mattlyons.net/downloads/assessorator",
"channel": "latest"
},
"win": {
"target": "nsis"
},
"linux": {
"category": "Office"
}
},
"postinstall": "install-app-deps"
}