-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.3 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.3 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "multimodal",
"version": "0.2.2",
"description": "a tool for teaching",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"watch": "webpack --config webpack.config.js --watch",
"pack": "webpack --config webpack.config.js",
"lint": "eslint src/main.js src/lesson.js src/utils.js src/renderer",
"lint:fix": "node_modules/.bin/eslint --fix src/main.js src/lesson.js src/utils.js src/renderer",
"postinstall": "install-app-deps",
"package-linux": "electron-packager . Multimodal --overwrite --asar=true --platform=linux --arch=x64 --icon=src/assets/icon.png --prune=true --out=build",
"package-osx": "electron-packager . Multimodal --overwrite --platform=darwin --arch=x64 --icon=src/assets/icon.icns --prune=true --out=build"
},
"build": {
"appId": "com.multimodal.app",
"productName": "multimodal",
"mac": {
"category": "com.education.multimodal"
},
"linux": {
"packageCategory": "Education",
"description": "Desktop App for Teaching",
"target": [
"deb",
"zip",
"AppImage"
],
"maintainer": "Pierre Depaz <pierre.depaz@gmail.com>"
},
"buildVersion": "0.1",
"nodeGypRebuild": true,
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/periode/multimodal.git"
},
"keywords": [
"electron",
"teaching"
],
"author": "pierre depaz",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/periode/multimodal/issues"
},
"homepage": "https://github.com/periode/multimodal#readme",
"devDependencies": {
"@electron/remote": "^2.0.8",
"@vue/devtools": "^5.3.3",
"css-loader": "5.0.2",
"electron": "35.7.5",
"electron-builder": "^20.15.1",
"electron-webpack-plugin": "^2.0.0",
"eslint": "^4.18.2",
"file-loader": "^6.2.0",
"jstransformer-markdown-it": "^2.1.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "7.0.0",
"resolve-url-loader": "3.1.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "4.36.0"
},
"dependencies": {
"adm-zip": "^0.4.10",
"ajv": "6.12.6",
"ansi-html": "^0.0.8",
"ansi-regex": "4.1.1",
"bufferutil": "^4.0.6",
"dot-prop": "4.2.1",
"engine.io": "6.2.1",
"fs-extra": "^8.1.0",
"glob-parent": "5.1.2",
"html-pdf": "3.0.1",
"is-svg": "4.3.0",
"js-yaml": "^3.13.3",
"kind-of": "^6.0.3",
"lodash": "^4.17.19",
"lodash.mergewith": "^4.6.2",
"macaddress": "^0.2.9",
"marked": "4.0.10",
"mem": "^4.0.0",
"mixin-deep": "^1.3.2",
"node-forge": "1.3.2",
"object-path": "0.11.8",
"postcss": "7.0.36",
"pug": "^3.0.1",
"set-value": "^2.0.1",
"sockjs": "0.3.20",
"tar": "4.4.18",
"url-loader": "^2.1.0",
"utf-8-validate": "^5.0.9",
"vue": "^2.6.10",
"vue-electron": "^1.0.6",
"vue-style-loader": "^4.1.2",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.1.11",
"yargs-parser": "5.0.1"
}
}