forked from beakerbrowser/beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.74 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
{
"bin": "./tasks/start-cli.js",
"name": "beakerbrowser",
"devDependencies": {
"asar": "^0.11.0",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"electron": "1.7.4",
"electron-builder": "~10.4.1",
"eslint": "^4.2.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"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.41.0",
"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": "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",
"burnthemall": "rm -Rf ./node_modules ./app/node_modules; npm i; npm run rebuild",
"lint": "eslint --ignore-pattern 'color-thief.js' --ignore-pattern 'app/node_modules' --ignore-pattern '*.build.js' app",
"rebuild": "(cd app && npm rebuild --runtime=electron --target=1.7.4 --disturl=https://atom.io/download/atom-shell --build-from-source); gulp build",
"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"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/beaker",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}