-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.91 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.91 KB
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
{
"name": "conet",
"version": "2.2.0",
"license": "MIT",
"description": "CoNET platform",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"win": "electron-builder --x64",
"win32": "electron-builder --ia32",
"linux": "electron-builder --linux",
"unix": "",
"mac": "electron-builder",
"pre": "electron-builder install-app-deps",
"release": "electron-builder --win && electron-builder --mac && electron-builder --linux",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"engines": {
"node": ">=50.9"
},
"devDependencies": {
"electron-builder-squirrel-windows": "19.52.0"
},
"build": {
"appId": "com.CoNET.Platform",
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "squirrel"
}
],
"icon": "resources/icon.ico"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "resources/qtgate"
},
"linux": {
"target": [
"deb",
"pacman"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/QTGate/QTGate-Desktop-Client.git"
},
"author": {
"name": "CoNET Technology Inc.",
"email": "info@CoNETTech.ca"
},
"bugs": {
"url": "https://github.com/QTGate/QTGate-Desktop-Client/issues"
},
"homepage": "https://www.CoNET.com",
"dependencies": {
"@types/express": "^4.16.1",
"@types/node": "11.9.4",
"async": "^2.6.2",
"cookie-parser": "^1.4.4",
"express": "^4.16.4",
"jimp": "^0.6.0",
"jquery": "^3.3.1",
"net-ping": "^1.2.3",
"node-uuid": "^1.4.8",
"nodemailer": "^5.1.1",
"openpgp": "4.4.7",
"portastic": "^1.0.1",
"pug": "^2.0.3",
"raw-socket": "1.6.4",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"twitter-text": "3.0.0",
"snyk": "^1.189.0"
},
"snyk": true
}