-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
116 lines (116 loc) · 2.79 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "CPod",
"version": "1.28.1",
"description": "A simple, beautiful podcast app.",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"creds": "node ./bin/write_creds_to_json.js",
"test": "ava"
},
"repository": {
"type": "git",
"url": "https://github.com/z-------------/CPod"
},
"keywords": [
"podcast",
"audio",
"electron",
"windows",
"macos",
"linux"
],
"author": {
"name": "Zachary James Guard",
"email": "[email protected]",
"url": "https://github.com/z-------------"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/z-------------/CPod/issues"
},
"homepage": "https://github.com/z-------------/CPod",
"dependencies": {
"autolinker": "^1.6.2",
"electron-updater": "^2.20.1",
"file-url": "^2.0.2",
"html5sortable": "0.8.1",
"i18n-iso-countries": "^3.7.3",
"is-url": "^1.2.4",
"jimp": "^0.6.0",
"jquery": "3.4.0",
"localforage": "^1.6.0",
"moment": "^2.20.1",
"mousetrap": "^1.6.1",
"os-locale": "^2.1.0",
"request": "^2.88.0",
"sanitize-filename": "^1.6.1",
"sanitize-html": "^1.18.5",
"tippy.js": "^2.1.1"
},
"devDependencies": {
"autoprefixer": "^8.1.0",
"ava": "^1.4.1",
"electron": "2.0.12",
"electron-builder": "^20.5.1",
"gulp": "3.9.1",
"gulp-concat": "^2.6.1",
"gulp-postcss": "^7.0.0",
"gulp-pug": "^3.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.2"
},
"build": {
"appId": "yy.zacharyguard.cumulonimbus",
"productName": "CPod",
"artifactName": "${productName}-setup-${version}.${ext}",
"files": [
"main.js",
"public",
"!public/app/js/{basic,main}.js",
"!public/app/js/cbus-{audio,broadcast,const,data,settings,sync,ui}.js",
"!public/app/js/cbus-server-{generate-opml,get-podcast-info,get-popular-podcasts,search-podcasts,update}.js",
"!public/**/*.pug",
"!public/**/*.scss",
"!gulpfile.js",
"build/icon.ico",
"build/icon.png",
"build/icon.svg",
"build/icons/16x16.png",
"lib/*.js",
"locales/*.json",
"creds.json"
],
"mac": {
"category": "public.app-category.entertainment",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"artifactName": "${productName} Setup ${version}.${ext}"
},
"linux": {
"category": "Audio;AudioVideo",
"target": [
"AppImage",
"deb"
]
},
"appImage": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"deb": {
"artifactName": "${productName}_${version}_${arch}.${ext}"
}
}
}