forked from shenlvmeng/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "Traces",
"version": "0.2.0",
"description": "Integrate all gpx traces into one map. Show your traces.",
"main": "app/main.js",
"build": {
"appId": "com.electron.traces",
"productName": "Traces",
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon.png"
},
"dmg": {
"backgroundColor": "#fdfdfd",
"icon": "build/icon.png",
"window": {
"width": 800,
"height": 600
}
},
"win": {
"icon": "build/icon.ico"
},
"linux": {
"icon": "build/icon.png"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"homepage": "https://github.com/shenlvmeng/Traces-maker",
"repository": "https://github.com/shenlvmeng/Traces-maker",
"keywords": [
"traces",
"cycle",
"maker",
"Electron",
"demo"
],
"author": {
"name": "shenlvmeng",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"electron": "~1.7.8",
"electron-builder": "^19.56.0"
},
"dependencies": {
"gpx-parse": "^0.10.4"
},
"postinstall": "electron-builder install-app-deps"
}