-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 843 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 843 Bytes
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": "sleeppy",
"version": "1.0.0",
"description": "Simple Sleep Timer",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"package:mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --out=out --icon=assets/app-icon/sleep.icns",
"package:win": "electron-packager . --overwrite --platform=win32 --arch=ia32 --out=out --icon=assets/app-icon/sleep.ico",
"package:ubuntu": "electron-packager . --overwrite --platform=linux --arch=x64 --out=out"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viprogramm/sleeppy.git"
},
"author": "Vitaliy Ti",
"license": "ISC",
"bugs": {
"url": "https://github.com/viprogramm/sleeppy/issues"
},
"devDependencies": {
"electron": "~1.6.2",
"electron-packager": "^8.6.0"
}
}