forked from salomvary/soundcleod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.04 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
{
"name": "soundcleod",
"private": true,
"scripts": {
"predist": "npm run generate-images",
"dist": "electron-builder",
"prepack": "npm run generate-images",
"pack": "electron-builder --dir",
"prerelease": "npm run generate-images",
"release": "electron-builder",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"postinstall": "electron-builder install-app-deps",
"start": "electron ./app --profile=development --no-auto-updater --developer-tools",
"test": "mocha",
"generate-images": "gulp images",
"prettier": "prettier --check '**/*.{js,html,css,markdown,md,yml,yaml,json}'",
"prettier:fix": "prettier --write '**/*.{js,html,css,markdown,md,yml,yaml,json}'",
"verify": "npm run eslint && npm run prettier && npm test"
},
"build": {
"appId": "com.electron.soundcleod",
"extraResources": [
"dsa_pub.pem",
"Credits.rtf"
],
"afterSign": "scripts/notarize.js",
"mac": {
"hardenedRuntime": true
},
"dmg": {
"iconSize": 128,
"contents": [
{
"x": 345,
"y": 153,
"type": "link",
"path": "/Applications"
},
{
"x": 95,
"y": 153,
"type": "file"
}
]
},
"win": {
"target": [
"squirrel"
]
},
"linux": {
"target": [
"AppImage"
]
},
"squirrelWindows": {
"iconUrl": "https://soundcleod.com/favicon.ico"
}
},
"devDependencies": {
"electron": "^8.2.5",
"electron-builder": "^22.6.1",
"electron-builder-squirrel-windows": "^22.6.1",
"electron-notarize": "^0.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"gulp": "^4.0.1",
"gulp-rename": "^1.4.0",
"gulp-to-ico": "^1.0.0",
"mocha": "^7.1.1",
"prettier": "^1.19.1",
"spectron": "^10.0.1",
"svg2png": "^4.1.1",
"through2": "^3.0.1",
"tmp": "^0.1.0",
"vinyl": "^2.2.0"
}
}