-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
26 lines (26 loc) · 913 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.2.0",
"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 --app-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": "^14.2.1",
"electron": "^8.1.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"menubar": "^8.0.1"
}
}