-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "Snap!",
"version": "0.0.8",
"description": "Snap! | Build Your Own Blocks",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cycomachead/snap-app.git"
},
"keywords": [
"Snap",
"programming",
"blocks",
"computer science",
"education",
"coding"
],
"author": "Michael Ball, Jens Mönig, Brian Harvey",
"license": "AGPL",
"bugs": {
"url": "https://github.com/cycomachead/snap-app/issues"
},
"homepage": "https://github.com/cycomachead/snap-app#readme",
"devDependencies": {
"electron": "^3.0.0",
"electron-builder": "^20.x.x"
},
"postinstall": "install-app-deps",
"engines": {
"node": "^10.x.x"
},
"build": {
"productName": "Snap",
"appId": "edu.berkeley.snap.snapapp",
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.education"
},
"win": {
"iconUrl": "https://snap.berkeley.edu/snapsource/favicon.ico"
},
"compression": "store",
"publish": {
"provider": "github",
"vPrefixedTagName": false
}
},
"scripts": {
"start": "electron app $@",
"pack": "build --dir",
"dist": "build",
"release": "build"
},
"private": true
}