forked from therealklanni/hotel-clerk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 909 Bytes
/
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
{
"name": "hotel-clerk",
"version": "1.1.2",
"description": "Hotel Clerk helps you run your hotel from a convenient menubar app",
"main": "index.js",
"scripts": {
"build": "electron-packager . \"Hotel Clerk\" --platform=darwin --arch=x64 --version=0.36.12 --overwrite --out=dist --icon=hotel --ignore=dist --ignore=hotel.* --ignore=sips --prune",
"clean": "rimraf dist/Hotel-Clerk.zip dist/tmp",
"release": "npm run clean && cd dist/Hotel\\ Clerk-darwin-x64 && zip -rXq ../Hotel-Clerk.zip *",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"hotel"
],
"author": "Kevin Lanni <[email protected]> (https://github.com/therealklanni)",
"license": "MIT",
"devDependencies": {
"electron-packager": "^12.0.1",
"electron": "^1.8.6",
"rimraf": "^2.4.2"
},
"dependencies": {
"menubar": "^4.1.0"
}
}