-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.29 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
{
"name": "sitecues-proxy-gui",
"version": "0.0.1",
"description": "The Sitecues Proxy as a desktop app.",
"homepage": "https://github.com/sitecues/sitecues-proxy-gui",
"main": "view/index.html",
"author": {
"name": "Seth Holladay",
"url": "http://seth-holladay.com",
"email": "[email protected]"
},
"scripts": {
"start": "nw",
"test": "xo"
},
"repository": {
"type": "git",
"url": "[email protected]:sitecues/sitecues-proxy-gui.git"
},
"bugs": {
"url": "https://github.com/sitecues/sitecues-proxy-gui/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=6"
},
"license": "SEE LICENSE IN LICENSE",
"files": [
"index.js"
],
"dependencies": {
"nw": "^0.17.1",
"opn": "^4.0.2"
},
"devDependencies": {
"eslint-config-tidy": "^0.3.0",
"xo": "^0.16.0"
},
"keywords": [
"proxy",
"desktop",
"gui",
"app"
],
"xo": {
"extend": "tidy"
},
"single-instance": true,
"window": {
"title": "sitecues Proxy",
"position": "center",
"show": false,
"width": 650,
"height": 650,
"min_width": 300,
"min_height": 300,
"toolbar": false,
"frame": true,
"transparent": false,
"icon": "sitecues-icon.png"
},
"chromium-args": "--child-clean-exit"
}