-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.53 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.53 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "AppServer",
"version": "1.5.0",
"description": "AppServer is a Desktop App Server for HTML, MD files for Developers and Enthusiasts.",
"homepage": "https://github.com/bismay4u/AppServer",
"main": "main.js",
"scripts": {
"start": "electron . --enable-logging",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist:linux": "build --x64 --linux deb",
"dist:win64": "build --x64 --win",
"dist:win32": "build --ia32 --win",
"dist:mac": "build --x64 --mac",
"dist:all": "build -mwl --x64 --ia32",
"dist": "npm run dist:mac && npm run dist:linux && npm run dist:win"
},
"packageIgnore": [
"LICENSE.md",
"README.md",
".DS_Store",
".travis.yml",
"appveyor.yml",
"test",
"dist",
"build/Screenshot.png"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bismay4u/AppServer.git"
},
"keywords": [
"web",
"server",
"app",
"html",
"static"
],
"author": {
"name": "Bismay",
"email": "bismay4u@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bismay4u/AppServer/issues"
},
"dependencies": {
"bootstrap": "^3.3.6",
"electron-localshortcut": "^2.0.2",
"electron-save-file": "^1.0.2",
"empty-port": "0.0.2",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-http-proxy": "^1.2.0",
"filesize": "^3.6.1",
"font-awesome": "^4.6.3",
"fs-extra": "^4.0.2",
"handlebars": "^4.0.8",
"jquery": "^3.3.1",
"jquery-ui": "^1.12.1",
"jquery.easing": "^1.4.1",
"lodash": "^4.17.10",
"md5": "^2.2.1",
"mimer": "^0.3.2",
"moment": "^2.22.2",
"node-localstorage": "*",
"node-thumbnail": "^0.14.0",
"require-reload": "*",
"s3": "^4.4.0",
"socket.io": "^2.1.1",
"underscore": "^1.9.1",
"vue": "^2.5.16",
"winston": "^2.3.1"
},
"devDependencies": {
"electron": "^2.0.6",
"electron-builder": "^20.26.1",
"electron-packager": "^9.1.0"
},
"build": {
"appId": "com.silk.appserver",
"productName": "AppServer",
"artifactName": "com.silk.appserver",
"asar": true,
"compression": "normal",
"copyright": "Copyright @ 2017 Bismay",
"mac": {
"category": "public.app-category.development",
"icon": "build/icon.icns"
},
"win": {
"icon": "build/icon.ico",
"target": "nsis"
},
"linux": {
"category": "Graphics",
"icon": "build/icons"
},
"nsis": {
"oneClick": false
}
}
}