-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 733 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 733 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
{
"name": "task-timer-electron",
"productName": "Task Timer",
"version": "0.2.0",
"description": "A simple app that keeps track of the time used on different tasks",
"license": "MIT",
"main": "main.js",
"scripts": {
"start": "electron .",
"package-mac": "node_modules/.bin/electron-packager . 'Task Timer' --out=dist/osx --platform=darwin --arch=x64 --overwrite --icon=clipboard.icns --prune=true"
},
"author": {
"name": "Runar Jørgensen",
"email": "ventrec@ventrec.org",
"homepage": "http://www.ventrec.org"
},
"dependencies": {
"bulma": "^0.2.3",
"electron": "^1.4.1",
"electron-packager": "^8.2.0",
"lodash": "^4.16.6",
"moment": "^2.17.1",
"vue": "^2.0.3"
}
}