forked from salomvary/soundcleod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.51 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
{
"private": true,
"scripts": {
"predist": "npm run generate-images",
"dist": "build",
"prepack": "npm run generate-images",
"pack": "build --dir",
"prerelease": "npm run generate-images",
"release": "build",
"eslint": "eslint .",
"postinstall": "install-app-deps",
"start": "electron ./app --profile=development --no-auto-updater --developer-tools",
"test": "mocha",
"generate-images": "gulp images"
},
"build": {
"appId": "com.electron.soundcleod",
"extraResources": [
"dsa_pub.pem",
"Credits.rtf"
],
"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": "^4.0.1",
"electron-builder": "20.38.5",
"electron-builder-squirrel-windows": "^20.38.5",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"gulp": "^4.0.0",
"gulp-rename": "^1.2.2",
"gulp-to-ico": "^1.0.0",
"mocha": "^5.0.1",
"spectron": "^5.0.0",
"svg2png": "^4.1.1",
"through2": "^2.0.5",
"tmp": "0.0.33",
"vinyl": "^2.1.0"
}
}