-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "EasyProxy",
"version": "2.1.2",
"description": "Easy Proxy Creation",
"main": "index.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"dist:win": "build --windows --x64 --dir",
"dist:mac": "build --mac",
"installer": "node scripts/installer.js"
},
"author": "Peter Soboyejo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/dzt/easy-proxy.git"
},
"bugs": {
"url": "https://github.com/dzt/easy-proxy/issues"
},
"dependencies": {
"async": "^2.6.0",
"bootstrap": "^3.3.7",
"console.table": "^0.8.0",
"copy-paste": "^1.3.0",
"do-wrapper": "^3.11.1",
"electron-config": "^1.0.0",
"electron-settings": "^2.2.2",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"object-path": "^0.11.4",
"path": "^0.12.7",
"prompt": "^1.0.0",
"randomstring": "^1.1.5",
"request": "^2.83.0",
"rimraf": "^2.5.4",
"underscore": "^1.8.3"
},
"devDependencies": {
"electron": "1.3.4",
"electron-winstaller": "^2.5.0",
"electron-builder": "^19.13.0"
},
"build": {
"productName": "EasyProxy",
"appId": "com.petersoboyejo.easyproxy",
"mac": {
"target": "default",
"icon": "static/icons/logo.icns",
"identity": null
},
"win": {
"publisherName": "EasyProxy",
"target": "squirrel",
"icon": "static/icons/logo.ico"
}
}
}