forked from RocketChat/Rocket.Chat.Electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.25 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
117
118
119
120
121
122
123
124
{
"name": "rocketchat",
"productName": "Rocket.Chat+",
"description": "Rocket.Chat Native Cross-Platform Desktop Application via Electron.",
"version": "2.11.0-develop",
"author": "Rocket.Chat Support <support@rocket.chat>",
"copyright": "© 2017, Rocket.Chat",
"homepage": "https://rocket.chat",
"license": "MIT",
"main": "app/background.js",
"repository": {
"type": "git",
"url": "https://github.com/RocketChat/Rocket.Chat.Electron.git"
},
"build": {
"appId": "chat.rocket",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
"dictionaries/**/*",
"build/icon.ico",
"servers.json"
],
"mac": {
"bundleVersion": "20",
"helperBundleId": "chat.rocket.electron.helper",
"category": "public.app-category.productivity",
"target": [
"dmg",
"pkg",
"zip",
"mas"
]
},
"nsis": {
"include": "build/win/installer.nsh",
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"appx": {
"backgroundColor": "#2f343d",
"displayName": "Rocket.Chat",
"publisherDisplayName": "Rocket.Chat",
"languages": [
"en-US",
"en-GB",
"pt-BR"
]
},
"linux": {
"desktop": {
"Categories": "GNOME;GTK;Network;InstantMessaging",
"StartupWMClass": "Rocket.Chat+",
"MimeType": "x-scheme-handler/rocketchat"
},
"target": [
"deb",
"rpm"
]
},
"publish": [
{
"provider": "github",
"owner": "RocketChat",
"repo": "Rocket.Chat.Electron",
"vPrefixedTagName": false
}
]
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"build": "gulp build",
"prerelease": "gulp build --env=production",
"release": "build",
"changelog": "conventional-changelog --config .github/changelog.js -i HISTORY.md -s",
"start": "gulp start",
"pretest": "gulp build-unit --env=test",
"test": "electron-mocha app/specs.js.autogenerated --renderer --require source-map-support/register",
"lint": "eslint .",
"coverage": "npm test -- -R scripts/istanbul-reporter",
"pree2e": "gulp build-e2e --env=test",
"e2e": "mocha app/e2e.js.autogenerated --require source-map-support/register"
},
"dependencies": {
"@paulcbetts/system-idle-time": "^1.0.4",
"electron-updater": "^2.10.0",
"fs-jetpack": "^1.2.0",
"lodash": "^4.17.4",
"spellchecker": "^3.4.3"
},
"optionalDependencies": {
"node-mac-notifier": "0.0.13"
},
"devDependencies": {
"chai": "^4.1.2",
"conventional-changelog-cli": "^1.3.3",
"electron": "^1.7.8",
"electron-builder": "^19.26.3",
"electron-mocha": "^4.0.3",
"eslint": "^4.7.2",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-less": "^3.3.2",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"rollup": "^0.49.3",
"rollup-plugin-istanbul": "^1.1.0",
"spectron": "^3.7.2"
},
"devEngines": {
"node": ">=7.x",
"npm": ">=4.x",
"yarn": ">=0.21.3"
}
}