-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.84 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
{
"private": true,
"engines": {
"node": "^5.7.0",
"npm": "^3.6.0"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"test-cov": "npm run lint && npm run cover && npm run mocha-cov && npm run report-cov",
"start": "electron app/app.js",
"start-debug": "electron app/app.js --debug --userdata=./userdata",
"start-screencast": "electron app/app.js --userdata=./userdata --windowsize=600x400",
"lint": "eslint app/js",
"compile": "riot -m ./riot ./app/js/riot",
"mocha-cov": "electron-mocha --renderer --recursive ./tests/js ./tests/riot --require ./tests/setup-cov.js --reporter tests/coverage",
"mocha": "electron-mocha --renderer --recursive ./tests/js ./tests/riot --require ./tests/setup.js",
"cover": "rimraf app/js-cov && istanbul instrument -o app/js-cov app/js",
"report-cov": "istanbul report lcovonly",
"postinstall": "install-app-deps",
"pack": "rimraf app/js-cov && build",
"dist": "rimraf app/js-cov && build",
"release": "rimraf app/js-cov && build"
},
"build": {
"appId": "com.glicer.browser",
"category": "public.app-category.productivity",
"linux": {
"fpm": ["--depends", "libappindicator1"]
},
"mac": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
}
},
"keywords": [
"browser",
"customize",
"autologin",
"favorite",
"block"
],
"devDependencies": {
"app-module-path": "^1.0.6",
"coveralls": "^2.11.9",
"devtron": "^1.1.2",
"electron-builder": "^6.0.0",
"electron-mocha": "^1.2.1",
"electron-prebuilt": "^1.0.0",
"eslint": "^2.8.0",
"istanbul": "^0.4.3",
"rimraf": "^2.5.2",
"riot": "^2.3.0"
}
}