forked from beakerbrowser/beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.84 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
{
"bin": "./tasks/start-cli.js",
"name": "beakerbrowser",
"devDependencies": {
"browserify": "^13.0.1",
"electron": "5.0.0",
"electron-builder": "~20.38.5",
"eslint": "^4.5.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"fs-jetpack": "^1.2.0",
"gulp": "^4.0.0",
"gulp-batch": "^1.0.5",
"gulp-less": "^4.0.1",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"into-stream": "^2.0.1",
"pre-commit": "^1.2.2",
"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",
"asar": true,
"asarUnpack": [
"./markdown-renderer.build.js",
"./json-renderer.build.js",
"./node_modules/sodium-native/**"
],
"copyright": "© 2019, Blue Link Labs",
"npmRebuild": false,
"protocols": [
{
"name": "URL",
"schemes": [
"http",
"https"
]
},
{
"name": "dat",
"schemes": [
"dat"
]
}
],
"appImage": {
"category": "Network",
"desktop": {
"Name": "Beaker Browser",
"GenericName": "Web Browser",
"Type": "Application",
"Terminal": false,
"MimeType": "text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/dat;video/webm;application/x-xpinstall;",
"Categories": "GNOME;GTK;Network;WebBrowser;"
}
},
"mac": {
"category": "public.app-category.productivity"
},
"publish": {
"provider": "github"
}
},
"scripts": {
"postinstall": "cd app && npm install",
"build": "gulp build",
"burnthemall": "node ./tasks/burnthemall.js",
"lint": "eslint --ignore-pattern 'color-thief.js' --ignore-pattern 'app/node_modules' --ignore-pattern 'app/vendor' --ignore-pattern '*.build.js' --ignore-pattern 'assets' --fix app",
"rebuild": "gulp rebuild",
"release": "npm run build && build -p never && gulp postbuild",
"start": "gulp start",
"start-logging": "DEBUG=*,-bittorrent-dht $(node -e \"console.log(require('electron'))\") -r trace ./app",
"watch": "gulp start-watch"
},
"pre-commit": [
"lint"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/beaker",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"repository": {
"type": "git",
"url": "https://github.com/beakerbrowser/beaker"
},
"bugs": {
"url": "https://github.com/beakerbrowser/beaker/issues"
},
"homepage": "https://beakerbrowser.com/"
}