This repository was archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
97 lines (97 loc) · 2.7 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
{
"name": "vulture-feeds",
"productName": "vulture-feeds",
"version": "1.0.12",
"description": "A news aggregator for journalists, tuned for finding recent stories and documents.",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --mac",
"build": "electron-builder --mac --windows --linux",
"publish": "electron-builder --mac --windows --linux --publish always",
"distw": "build -mw --x64 --ia32",
"make-installer": "electron-installer-dmg ./release-builds/vulture-feeds-darwin-x64/vulture-feeds.app vulture-feeds --overwrite"
},
"build": {
"afterSign": "scripts/notarize.js",
"appId": "com.lot49.vulturefeeds",
"mac": {
"category": "public.app-category.news",
"target": [
"dmg"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"type": "distribution",
"icon": "build/icon.icns"
},
"mas": {
"entitlements": "build/entitlements.mas.plist",
"provisioningProfile": "build/Lot_49_Labs_Mac_Distribution.provisionprofile",
"type": "distribution",
"category": "public.app-category.news"
},
"win": {
"target": "NSIS"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network"
}
},
"publish": [
{
"provider": "github",
"owner": "Dotnaught"
}
],
"author": "Thomas Claburn",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.35.2",
"ajv": "^6.10.2",
"checksum": "^0.1.1",
"cheerio": "^1.0.0-rc.3",
"dexie": "^2.0.4",
"electron-log": "^4.0.0",
"electron-prompt": "^1.4.0",
"electron-store": "^5.0.0",
"electron-updater": "^4.1.2",
"feedparser": "^2.2.9",
"fstream": "^1.0.12",
"get-urls": "^9.1.0",
"https-proxy-agent": "^4.0.0",
"install": "^0.13.0",
"materialize-css": "^1.0.0",
"moment": "^2.24.0",
"node-gyp": "^6.0.0",
"npm": "^6.14.6",
"request": "^2.88.0",
"ssl-root-cas": "^1.3.1",
"tldjs": "^2.3.1"
},
"devDependencies": {
"electron": "^9.4.0",
"electron-builder": "^21.2.0",
"electron-installer-dmg": "^3.0.0",
"electron-notarize": "^0.2.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2"
},
"repository": {
"type": "git",
"url": "git://github.com/Dotnaught/vulture-feeds.git"
},
"bugs": {
"url": "https://github.com/Dotnaught/vulture-feeds/issues"
},
"homepage": "https://github.com/Dotnaught/vulture-feeds#readme"
}