-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.07 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
{
"name": "rabbitmq-ticker",
"version": "1.0.2",
"description": "Display the contents of an exchange in RabbitMQ in a ticker",
"repository": {
"type": "git",
"url": "https://github.com/marcelmaatkamp/electron-rabbitmq-ticker.git"
},
"license": "MIT",
"main": "app.js",
"author": "Marcel Maatkamp <[email protected]>",
"copyright": "© 2017, Marcel Maatkamp",
"homepage": "https://github.com/marcelmaatkamp/electron-rabbitmq-ticker",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron ./app",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"release": "electron-builder"
},
"devDependencies": {
"electron": "^1.4.12",
"electron-builder": "^19.37.2",
"electron-settings": "3.1.3"
},
"dependencies": {
"amqp-ts": "1.4.0",
"convict": "^3.0.0",
"flipclock": "0.7.8",
"standard": "^10.0.3",
"winston": "^2.4.0",
"wavy": "1.0.4"
},
"postinstall": "electron-builder install-app-deps",
"build": {
"appId": "RabbitMQ Ticker",
"extraResources": [
"build/icon.ico"
],
"mac": {
"bundleVersion": "20",
"helperBundleId": "chat.rocket.electron.helper",
"category": "public.app-category.productivity",
"type": "development",
"target": [
"dmg",
"pkg",
"zip",
"mas"
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"appx": {
"backgroundColor": "#2f343d",
"displayName": "Rocket.Chat",
"publisherDisplayName": "RabbitMQ Ticker",
"languages": [
"en-US",
"en-GB",
"pt-BR"
]
},
"linux": {
"desktop": {
"Categories": "GNOME;GTK;Network;InstantMessaging"
},
"target": [
"deb",
"rpm"
]
},
"publish": [
{
"provider": "github",
"owner": "marcelmaatkamp",
"repo": "electron-rabbitmq-ticker",
"vPrefixedTagName": false
}
]
}
}