pointvec/desktop/package.json

39 lines
1.9 KiB
JSON
Raw Normal View History

2017-11-04 20:52:05 -04:00
{
"name": "Dotgrid",
2018-10-04 19:52:17 -04:00
"productName": "Dotgrid",
2017-11-04 20:52:05 -04:00
"version": "0.1.0",
"main": "main.js",
"scripts": {
2018-01-08 02:53:54 -05:00
"start": "electron .",
2018-10-04 19:52:17 -04:00
"lint": "eslint --ignore-path ../.gitignore .",
2018-11-21 16:21:34 -05:00
"fix": "standard --fix",
2018-07-17 22:30:11 -04:00
"clean": "rm -r ~/Desktop/Dotgrid-darwin-x64/ ; rm -r ~/Desktop/Dotgrid-linux-x64/ ; rm -r ~/Desktop/Dotgrid-win32-x64/ ; rm -r ~/Desktop/Dotgrid-linux-armv7l/ ; echo 'cleaned build location'",
"build_osx": "electron-packager . Dotgrid --platform=darwin --arch=x64 --out ~/Desktop/ --overwrite --icon=icon.icns ; echo 'Built for OSX'",
"build_linux": "electron-packager . Dotgrid --platform=linux --arch=x64 --out ~/Desktop/ --overwrite --icon=icon.ico ; echo 'Built for LINUX'",
"build_win": "electron-packager . Dotgrid --platform=win32 --arch=x64 --out ~/Desktop/ --overwrite --icon=icon.ico ; echo 'Built for WIN'",
2018-09-08 01:49:57 -04:00
"build": "npm run clean ; npm run build_osx ; npm run build_linux ; npm run build_win",
2018-07-17 22:30:11 -04:00
"push_osx": "~/butler push ~/Desktop/Dotgrid-darwin-x64/ hundredrabbits/dotgrid:osx-64",
"push_linux": "~/butler push ~/Desktop/Dotgrid-linux-x64/ hundredrabbits/dotgrid:linux-64",
"push_win": "~/butler push ~/Desktop/Dotgrid-win32-x64/ hundredrabbits/dotgrid:windows-64",
"push_theme": "~/butler push ~/Github/HundredRabbits/Themes/themes/ hundredrabbits/dotgrid:themes",
"push_status": "~/butler status hundredrabbits/dotgrid",
2018-09-08 01:49:57 -04:00
"push": "npm run build ; npm run push_theme ; npm run push_osx ; npm run push_linux ; npm run push_win ; npm run clean ; npm run push_status"
2017-11-04 20:52:05 -04:00
},
"devDependencies": {
2018-12-21 17:15:31 -05:00
"electron": "^3.0.13",
"electron-packager": "^12.2.0",
"eslint": "^5.10.0",
2018-10-04 19:52:17 -04:00
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
2017-11-04 20:52:05 -04:00
},
2018-10-12 05:36:21 -04:00
"dependencies": {},
2018-10-04 19:52:17 -04:00
"standard": {
2018-10-12 05:36:21 -04:00
"globals": [
"DOTGRID"
]
2017-11-04 20:52:05 -04:00
}
}