forked from KloakIT/Kloak_platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.37 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
{
"name": "Kloak_platform",
"version": "0.1.3",
"license": "MIT",
"description": "Kloak 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"
},
"engines": {
"node": ">=50.9"
},
"devDependencies": {
"@types/asn1js": "0.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.5",
"@types/jquery": "^3.3.34",
"@types/knockout": "^3.4.67",
"@types/node": "^13.11.1",
"@types/node-uuid": "^0.0.28",
"@types/pkijs": "^0.0.3",
"@types/snapsvg": "^0.5.0",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"electron": "^8.2.1",
"electron-builder-squirrel-windows": "^22.5.1"
},
"build": {
"appId": "com.Kloak.Platform",
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "squirrel"
}
],
"icon": "build/icon.ico"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "build/icon"
},
"dmg": {
"backgroundColor": "#ffffff",
"contents": [
{
"x": 110,
"y": 220
},
{
"x": 420,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"deb",
"pacman"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/KloakIT/Kloak_platform.git"
},
"author": {
"name": "Kloak Information Technologies Inc.",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/KloakIT/Kloak_platform/issues"
},
"homepage": "https://www.kloak.app",
"dependencies": {
"async": "^3.2.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"jimp": "0.10.1",
"jquery": "^3.4.1",
"jszip": "^3.3.0",
"knockout": "^3.5.1",
"mime-types": "^2.1.26",
"node-uuid": "^1.4.8",
"nodemailer": "^6.4.6",
"openpgp": "^4.10.1",
"pug": "^2.0.4",
"snapsvg": "^0.5.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}