forked from beakerbrowser/beaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
{
"bin": "./tasks/start-cli.js",
"name": "beakerbrowser",
"devDependencies": {
"browserify": "^13.0.1",
"electron": "1.7.4",
"electron-builder": "~19.43.0",
"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": "^1.2.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",
"copyright": "© 2017, Blue Link Labs",
"npmRebuild": false,
"protocols": [
{
"name": "URL",
"schemes": [
"http",
"https"
]
},
{
"name": "dat",
"schemes": [
"dat"
]
}
],
"linux": {
"category": "Network"
},
"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 '*.build.js' 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"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/beaker",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}