forked from angrykoala/gaucho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.31 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
{
"name": "gaucho",
"version": "0.4.0",
"description": "Minimalistic task launcher",
"main": "main.js",
"dependencies": {
"electron-store": "^1.3.0",
"jquery": "^3.1.1",
"jquery-ui": "^1.12.1",
"materialize-css": "^0.99.0",
"sweetalert2": "^6.10.1",
"vue": "^2.0.8",
"vuedraggable": "^2.14.1",
"yerbamate": "^2.0.1"
},
"devDependencies": {
"chai": "^4.0.2",
"cross-env": "^5.0.5",
"electron": "^1.7.8",
"electron-builder": "^19.36.0",
"electron-packager": "^9.1.0",
"eslint": "^4.8.0",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^3.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"pre-commit": "^1.2.2",
"sinon": "^4.0.1"
},
"config": {
"ignore": "(coverage|\\.travis.yml|\\.gitignore|test|\\.eslintrc)",
"icon": "resources/icon.png"
},
"scripts": {
"test": "istanbul cover _mocha && npm run lint",
"start": "electron .",
"start-dev": "cross-env NODE_ENV=dev npm start",
"build-electron": "electron-packager . --overwrite --out builds --ignore $npm_package_config_ignore --icon=$npm_package_config_icon",
"build-electron-all": "npm run clean && npm run build-electron -- --platform=win32 && npm run build-electron -- --platform=linux && npm run build-electron -- --platform=darwin",
"clean": "rm -rf builds config.json tasks.json coverage dist",
"lint": "eslint *.js app test",
"dist": "npm run clean && electron-builder -wl"
},
"build":{
"appId": "angrykoala.gaucho",
"linux":{
"target": ["deb", "rpm", "AppImage"],
"category": "Utility"
},
"win": {
"target": ["nsis", "portable"]
},
"mac": {
"target": ["dir"],
"category": "public.app-category.developer-tools"
},
"directories":{
"buildResources": "build_resources"
}
},
"pre-commit": [
"test",
"clean"
],
"repository": {
"type": "git",
"url": "git+https://github.com/angrykoala/gaucho.git"
},
"keywords": [
"electron",
"task",
"launcher",
"yerbamate",
"gui",
"graphical"
],
"author": "angrykoala <angrykoala@outlook.es>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/angrykoala/gaucho/issues"
},
"homepage": "https://github.com/angrykoala/gaucho#readme"
}