-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.75 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
71
72
{
"name": "gradestats",
"version": "0.0.2",
"description": "Import from xls spredsheets, store and analyze student grade data",
"main": "assets/js/main.js",
"repository": {
"type": "git",
"url": "git://github.com/nikolio/GradeStats.git"
},
"scripts": {
"postinstall": "install-app-deps",
"start": "electron . -v",
"pack": "build --dir --verbose",
"dist": "build --ia32 --x64 --win --linux"
},
"author": "nikolio <nikolio@post.cz>",
"license": "ISC",
"build": {
"appId": "nikolio",
"productName": "GradeStats",
"files": [
"**/*",
"![^*]*.xls",
"!package-lock.json",
"!README.md",
"!db${/*}"
],
"copyright": "© 2016 - 2017 nikolio",
"linux": {
"icon": "assets/icons",
"category": "Utility",
"target": [
"rpm",
"deb",
"AppImage"
]
},
"win": {
"target": "nsis",
"icon": "assets/icons/icon.ico"
},
"nsis": {
"license": "assets/license",
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"artifactName": "${productName}-Installer-v${version}-multiarch.${ext}"
}
},
"dependencies": {
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-aria": "^1.6.6",
"angular-material": "^1.0.9",
"angular-messages": "^1.6.6",
"angular-resource": "^1.6.6",
"angular-ui-router": "^1.0.3",
"hasha": "^3.0.0",
"js-base64": "^2.1.9",
"material-design-icons": "^3.0.1",
"nedb": "^1.8.0",
"ng-file-upload": "^12.0.4",
"plotly.js": "^1.30.0",
"unoconv": "^0.1.2",
"xlsx": "^0.8.0"
},
"devDependencies": {
"electron": "^1.7.6",
"electron-builder": "^19.24.4"
}
}