This repository was archived by the owner on Oct 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.35 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.35 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
{
"name": "titime",
"productName": "TiTime - Keeping the time for you",
"version": "1.4.7",
"description": "Tool for Instant Time Tracking",
"main": "src/index.js",
"scripts": {
"start": "TITIME_DEBUG=1 electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src --color"
},
"keywords": [
"Time Tracker",
"Activity",
"Time",
"Management",
"Tool",
"Utility",
"Time Utility"
],
"author": "AlexanderC <alexander.moldova@gmial.com>",
"license": "MIT",
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"zip"
],
"linux": [
"deb"
]
},
"electronPackagerConfig": {
"packageManager": "npm",
"icon": "assets/icon/icon.icns"
},
"electronWinstallerConfig": {
"name": "titime",
"icon": "assets/icon/icon.ico"
},
"electronInstallerDebian": {
"name": "titime",
"icon": "assets/icon/icon.png"
},
"github_repository": {
"owner": "AlexanderC",
"name": "titime"
},
"windowsStoreConfig": {
"packageName": "",
"name": "titime"
}
}
},
"dependencies": {
"axios": "^0.17.1",
"d3-timelines": "^1.3.1",
"desktop-idle": "^1.1.1",
"diskdb": "^0.1.17",
"electron-compile": "^6.4.2",
"electron-config": "^1.0.0",
"electron-devtools-installer": "^2.2.3",
"electron-positioner": "^3.0.0",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^5.0.0",
"humanize-duration": "^3.12.1",
"moment": "^2.20.1",
"node-redmine-fake-ua": "^0.2.1",
"pify": "^3.0.0",
"valid-url": "^1.0.9",
"vue": "^2.5.13",
"vue-electron": "^1.0.6",
"vue-material": "^1.0.0-beta-7",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"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.19.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.6.1"
}
}