-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.59 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Tomatoad",
"version": "0.6.0",
"description": "Pomodora Desktop Timer",
"main": "main.js",
"scripts": {
"postinstall": "install-app-deps",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "electron-builder",
"build": "npm run compile && npm run dist"
},
"repository": "https://github.com/dracan/tomatoad",
"keywords": [
"Pomodoro",
"Electron"
],
"author": "Dan Clarke",
"license": "MIT",
"devDependencies": {
"electron": "^1.8.2",
"electron-builder": "^20.2.0",
"electron-webpack": "1.12.1",
"webpack": "^3.10.0",
"webpack-sources": "1.0.1"
},
"dependencies": {
"bootstrap-vue": "^2.0.0-rc.1",
"electron-positioner": "^3.0.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"keytar": "^4.1.0",
"moment": "^2.20.1",
"nedb": "^1.8.0",
"node-fetch": "^2.0.0",
"source-map-support": "^0.5.3",
"vue": "^2.5.13",
"vue-class-component": "^6.1.2",
"vue-html-loader": "^1.2.4",
"vue-loader": "^14.1.1",
"vue-rate-it": "^2.1.0",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.13"
},
"build": {
"appId": "com.electron.tomatoad",
"productName": "Tomatoad",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS",
"icon": "build/icon.ico"
}
}
}