-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
95 lines (95 loc) · 2.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "tournamenter-app",
"author": {
"name": "Ivan Seidel",
"email": "ivan@tendadigital.net",
"url": "https://github.com/ivanseidel"
},
"productName": "Tournamenter",
"description": "Manage instances of Tournamenter",
"homepage": "https://github.com/ivanseidel/TournamenterApp",
"repository": "https://github.com/ivanseidel/TournamenterApp",
"license": "MIT",
"version": "1.7.3",
"README": "none",
"engines": {
"node": "6.9.1"
},
"main": "index.js",
"scripts": {
"test": "make test",
"start": "electron ./",
"postinstall": "bower install && bower-installer",
"pack": "build --dir",
"dist": "build",
"release": "build"
},
"build": {
"appId": "com.tournamenter",
"asar": true,
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"icon": "build/icon.icns"
},
"dmg": {
"background": "build/background.png",
"iconSize": 120,
"contents": [
{
"x": 610,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 150,
"y": 150,
"type": "file"
}
]
},
"win": {
"target": [
"squirrel"
],
"icon": "build/icon.ico"
},
"linux": {
"description": "Tournamenter Manager App",
"target": [
"AppImage",
"deb:x64",
"deb:armv7l"
]
},
"squirrelWindows": {
"iconUrl": "https://raw.githubusercontent.com/ivanseidel/TournamenterApp/master/build/icon.ico",
"msi": false
}
},
"dependencies": {
"async": "^2.3.0",
"chalk": "^1.1.3",
"forever-monitor": "^1.7.0",
"ip": "^1.1.5",
"kerberos": "0.0.21",
"lodash": "^4.13.1",
"npm": "^3.10.5",
"request": "^2.81.0",
"semver": "^5.3.0",
"tournamenter": "2.4.3"
},
"devDependencies": {
"bower": "latest",
"bower-installer": "latest",
"electron": "^1.6.2",
"electron-builder": "^16.6.0",
"electron-builder-squirrel-windows": "^16.6.0",
"electron-prebuilt": "^1.2.6",
"rimraf": "^2.5.3"
}
}