forked from beakerbrowser/beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.96 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
{
"devDependencies": {
"asar": "^0.11.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"electron-builder": "~10.4.1",
"electron": "1.4.13",
"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",
"rollup": "^0.26.3",
"yargs": "^4.2.0"
},
"optionalDependencies": {
"appdmg": "^0.4.5",
"rcedit": "^0.5.0"
},
"build": {
"appId": "com.pfrazee.beaker-browser",
"category": "public.app-category.productivity",
"copyright": "© 2016, Paul Frazee",
"npmRebuild": false,
"asar": false,
"protocols": [
{
"name": "URL",
"schemes": ["http", "https"]
},
{
"name": "IPFS",
"schemes": ["fs"]
},
{
"name": "dat",
"schemes": ["dat"]
}
],
"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" }
]
}
},
"scripts": {
"postinstall": "cd app && npm install",
"build": "gulp build",
"rebuild": "(cd app && npm rebuild --runtime=electron --target=1.4.13 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build",
"burnthemall": "rm -Rf ./node_modules ./app/node_modules; npm i; npm run rebuild",
"release": "build -m -p never",
"start": "gulp start",
"start-logging": "DEBUG=*,-bittorrent-dht $(node -e \"console.log(require('electron'))\") -r trace ./app",
"watch": "gulp start-watch"
}
}