-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
115 lines (115 loc) · 2.49 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "thomas",
"productName": "Thomas",
"version": "0.6.0",
"description": "Simple pomodoro timer",
"electronVersion": "0.36.0",
"main": "app/index.js",
"files": [
"build",
"app",
"lib",
"modules"
],
"scripts": {
"start": "electron .",
"lint": "standard",
"format": "prettier --write '**/*.js' && standard --fix",
"pack": "electron-builder --dir",
"dist": "npm run dist:mac && npm run dist:linux && npm run dist:win",
"dist:mac": "electron-builder --mac",
"dist:linux": "electron-builder --linux",
"dist:win": "electron-builder --win",
"postinstall": "electron-builder install-app-deps",
"precommit": "lint-staged",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrepolischuk/thomas.git"
},
"keywords": [
"electron-app",
"electron",
"pomodoro",
"timer"
],
"author": "Andrey Polischuk <[email protected]> (https://andrepolischuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrepolischuk/thomas/issues"
},
"homepage": "https://github.com/andrepolischuk/thomas",
"dependencies": {
"bel": "^5.0.0",
"dact": "^0.3.2",
"dact-electron": "^0.1.0",
"electron-debug": "^1.0.1",
"electron-localshortcut": "^1.1.1",
"electron-settings": "^3.1.4",
"nanomorph": "^5.0.0"
},
"devDependencies": {
"electron": "^4.0.3",
"electron-builder": "^20.38.5",
"electron-updater": "^4.0.6",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"standard": "^10.0.3"
},
"build": {
"appId": "com.andrepolischuk.thomas",
"files": [
"**/*"
],
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"darkModeSupport": true
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": [
"nsis"
]
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"jsxBracketSameLine": true
},
"lint-staged": {
"*.js": [
"prettier --write",
"standard --fix",
"git add"
]
}
}