-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
82 lines (82 loc) · 1.88 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
{
"name": "JoclyBoard",
"description": "Desktop application for playing board games",
"version": "0.9.13",
"productName": "JoclyBoard",
"keywords": [
"board games",
"chess",
"draughts",
"variants",
"webgl",
"electron",
"javascript"
],
"homepage": "https://github.com/mi-g/joclyboard",
"author": {
"name": "Michel Gutierrez",
"email": "mig@jocly.com",
"url": "https://github.com/mi-g"
},
"repository": {
"type": "git",
"url": "https://github.com/mi-g/joclyboard"
},
"license": "AGPL-3.0 OR SEE LICENSE IN COPYING.md",
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-updater": "^6.1.7",
"extract-zip": "^2.0.1",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-jison": "^1.2.0",
"jshint": "^2.13.6"
},
"optionalDevDependencies": {
"7zip-bin-mac": "^1.0.1"
},
"build": {
"appId": "com.jocly.board",
"linux": {
"target": [
"deb",
"tar.gz",
"AppImage"
],
"maintainer": "Michel Gutierrez <mig@jocly.com> (https://github.com/mi-g)"
},
"win": {
"target": [
"nsis"
],
"publisherName": "SARL ACLAP"
},
"nsis": {
"runAfterFinish": false,
"deleteAppDataOnUninstall": true,
"perMachine": true,
"artifactName": "${productName}-${version}-Setup.${ext}"
},
"mac": {
"category": "public.app-category.games"
},
"publish": {
"provider": "github",
"owner": "mi-g",
"repo": "joclyboard"
}
},
"scripts": {
"dist-linux": "node_modules/electron-builder/cli.js --linux --x64",
"dist-win": "node_modules/electron-builder/cli.js --win --x64",
"dist-mac": "node_modules/electron-builder/cli.js --mac",
"start": "node_modules/electron/cli.js app || true",
"jshint": "node_modules/jshint/bin/jshint app/*.js app/content/*.js || true",
"app-install": "cd app && npm install"
},
"postinstall": "install-app-deps",
"overrides": {
"graceful-fs": "^4.2.11"
}
}