forked from beakerbrowser/beaker
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
111 lines (111 loc) · 2.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
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
104
105
106
107
108
109
110
111
{
"devDependencies": {
"asar": "^0.11.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"electron": "1.4.1",
"electron-builder": "6.5.2",
"electron-localshortcut": "^1.0.0",
"fs-jetpack": "^0.9.0",
"gulp": "^3.9.0",
"gulp-batch": "^1.0.5",
"gulp-less": "^3.0.3",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"into-stream": "^2.0.1",
"q": "^1.4.1",
"redux-devtools": "^3.3.1",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.6.1",
"yargs": "^4.2.0"
},
"optionalDependencies": {
"appdmg": "^0.4.5",
"rcedit": "^0.5.0"
},
"build": {
"category": "public.app-category.productivity",
"copyright": "© 2016, Josh Wilson",
"npmRebuild": false,
"asar": false,
"dmg": {
"contents": [
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 220,
"type": "file",
"path": "dist/mac/Beaker Browser.app"
},
{
"x": 50,
"y": 400,
"type": "position",
"path": ".background"
},
{
"x": 150,
"y": 400,
"type": "position",
"path": ".DS_Store"
},
{
"x": 250,
"y": 400,
"type": "position",
"path": ".Trashes"
},
{
"x": 350,
"y": 400,
"type": "position",
"path": ".VolumeIcon.icns"
}
]
},
"protocols": {
"name": "SAFE Network URL",
"schemes": [
"safe"
]
},
"linux": {
"target": [
"AppImage",
"freebsd"
],
"category": "WebBrowser"
},
"win": {
"target": "nsis"
},
"nsis": {
"perMachine": true
},
"mac": {
"target": "dmg"
}
},
"scripts": {
"postinstall": "cd app && npm install",
"build": "gulp build",
"rebuild:only": "cd app && npm rebuild --runtime=electron --target=1.4.1 --disturl=https://atom.io/download/atom-shell --build-from-source",
"rebuild": "(cd app && npm rebuild --runtime=electron --target=1.4.1 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build;",
"burnthemall": "rm -Rf ./node_modules ./app/node_modules; npm i",
"release": "build -m -l -w -p never",
"release:mac": "build -m -p never",
"release:linux": "build -l -p never --x64",
"release:windows": "build -w -p never --x64",
"start": "gulp start",
"watch": "gulp start-watch"
},
"dependencies": {
"rollup-plugin-async": "^1.1.0"
}
}