This repository has been archived by the owner on Dec 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 2.26 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
{
"name": "boilerplate",
"productName": "Boilerplate",
"description": "An Electron boilerplate project",
"version": "1.6.0",
"author": "Andreas Gerlach <andi@appelgriebsch.org>",
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/appelgriebsch/electron-boilerplate.git"
},
"keywords": [
"electron",
"boilerplate",
"angularjs"
],
"build": {
"appId": "com.appelgriebsch.electron-boilerplate",
"compression": "maximum",
"dmg": {
"iconSize": 80,
"contents": [
{
"x": 100,
"y": 220
},
{
"x": 280,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Utility",
"packageCategory": "utils",
"remoteReleases": "https://github.com/appelgriebsch/electron-boilerplate",
"publish": [
"github"
],
"target": [
"AppImage"
],
"depends": []
},
"mac": {
"category": "",
"target": [
"dmg"
]
},
"squirrelWindows": {
"iconUrl": "https://raw.githubusercontent.com/appelgriebsch/electron-boilerplate/angularjs/build/icon.ico"
},
"win": {
"remoteReleases": "https://github.com/appelgriebsch/electron-boilerplate",
"publish": [
"github"
],
"target": [
"squirrel"
]
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/appelgriebsch/electron-boilerplate/issues"
},
"homepage": "https://github.com/appelgriebsch/electron-boilerplate/tree/angularjs#readme",
"scripts": {
"postinstall": "npm run app-install",
"start": "electron app/",
"app-install": "cd app && npm install --no-optional",
"build": "npm run -s build-linux || npm run -s build-mac || npm run -s build-win",
"build-linux": "build --x64 --linux",
"build-mac": "build --x64 --mac",
"build-win": "build --x64 --win",
"lint": "standard \"app/**/*.js\"",
"reformat": "npm run lint || standard \"app/**/*.js\" --fix"
},
"devDependencies": {
"devtron": "^1.4.0",
"electron-builder": "^19.52.0",
"electron-packager": "^10.1.1",
"electron": "^1.7.1",
"spectron": "^3.7.2",
"standard": "^10.0.3"
}
}