forked from angrykoala/gaucho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
{
"name": "gaucho",
"version": "0.3.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",
"vue": "^2.0.8",
"yerbamate": "^2.0.1"
},
"devDependencies": {
"chai": "^4.0.2",
"electron": "^1.6.7",
"electron-packager": "^9.1.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"sinon": "^4.0.0"
},
"config":{
"ignore": "(coverage|\\.travis.yml|\\.gitignore|test|\\.jshintrc)",
"icon": "resources/icon.png"
},
"scripts": {
"test": "npm run clean && istanbul cover _mocha && npm run jshint",
"start": "electron .",
"start-dev": "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",
"jshint": "jshint *.js app test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angrykoala/gaucho.git"
},
"keywords": [
"electron",
"task",
"launcher",
"yerbamate",
"gui",
"graphical"
],
"author": "angrykoala <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/angrykoala/gaucho/issues"
},
"homepage": "https://github.com/angrykoala/gaucho#readme"
}