forked from kriskbx/gitlab-time-tracker-taskbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.58 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.58 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "gtt-taskbar",
"productName": "gitlab time tracker taskbar",
"description": "A crossplatform menubar/taskbar application for GitLabs time tracking feature.",
"version": "0.2.7",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src",
"dev": "NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development webpack --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"keywords": [],
"author": "Kris Siepert",
"private": true,
"license": "GPL-2.0",
"config": {
"forge": {
"publish_targets": {
"win32": [
"github"
],
"darwin": [
"github"
],
"linux": [
"github"
]
},
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"snap",
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"ignore": [
".idea",
"resources",
"out",
".tresorit"
],
"packageManager": "yarn",
"icon": "./resources/images/icon/icon.png"
},
"electronInstallerSnap": {
"appPlugs": ["browser-support"],
"grade": "stable",
"desktopTemplate": "./.desktop"
},
"electronWinstallerConfig": {
"name": "gtt-taskbar",
"setupIcon": "./resources/images/icon/icon.ico"
},
"electronInstallerDebian": {
"icon": "./resources/images/icon/icon.png",
"categories": [
"Utility"
],
"homepage": "https://github.com/kriskbx/gitlab-time-tracker-taskbar"
},
"electronInstallerRedhat": {
"license": "GPL-2.0",
"requires": [
"lsb",
"libappindictor"
],
"compressionLevel": 9,
"categories": [
"Utility"
]
},
"github_repository": {
"owner": "kriskbx",
"name": "gitlab-time-tracker-taskbar"
},
"windowsStoreConfig": {
"packageName": "gtt-taskbar",
"name": "gitlab time tracker taskbar"
}
}
},
"dependencies": {
"babel-preset-es2016": "^6.24.1",
"chokidar": "^2.0.0",
"electron": "2.0.2",
"electron-compile": "^6.4.2",
"electron-log": "^2.2.14",
"gitlab-time-tracker": "^1.7.19",
"moment": "^2.20.1",
"raven": "^2.6.2",
"write-yaml": "^1.0.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"electron-forge": "^5.0.0",
"electron-prebuilt-compile": "1.7.11",
"eslint": "^3",
"eslint-config-airbnb": "^15",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^5",
"eslint-plugin-react": "^7",
"laravel-mix": "^2.0.0",
"milligram-stylus": "^1.3.0",
"roboto": "^0.8.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue": "^2.5.13",
"vue-js-toggle-button": "^1.2.2",
"vue-resource": "^1.3.5",
"vue-select": "^2.4.0",
"vuejs-datetimepicker": "^1.1.3"
}
}