forked from wakatime/atom-wakatime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.14 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
{
"name": "wakatime",
"description": "Fitbit for programmers. Get automated time tracking and metrics about your programming.",
"version": "7.0.9",
"author": "WakaTime <[email protected]>",
"keywords": [
"productivity",
"time tracking",
"analytics",
"coding activity",
"project",
"goals",
"pomodoro",
"timer",
"time",
"stats",
"git"
],
"configSchema": {
"apikey": {
"title": "Api Key",
"description": "Your secret key from https://wakatime.com/settings.",
"type": "string",
"default": "",
"order": 1
},
"ignore": {
"title": "Exclude File Paths",
"description": "Exclude these file paths from logging; POSIX regex patterns",
"type": "array",
"default": [
"^/var/(?!www/).*",
"^/tmp/",
"^/private/",
"COMMIT_EDITMSG$",
"PULLREQ_EDITMSG$",
"MERGE_MSG$"
],
"items": {
"type": "string"
},
"order": 2
},
"showStatusBarIcon": {
"title": "Show WakaTime in Atom status bar",
"description": "Add an icon to Atom's status bar with WakaTime info. Hovering over the icon shows current WakaTime status or error message.",
"type": "boolean",
"default": true,
"order": 3
},
"debug": {
"title": "Debug",
"description": "Logs verbose debug messages to the Atom developer console and ~/.wakatime.log file.",
"type": "boolean",
"default": false,
"order": 4
},
"disableSSLCertVerify": {
"title": "Disable SSL Cert Verify",
"description": "Disables verifying SSL Certificates for HTTPS requests. By default, SSL verification is enabled.",
"type": "boolean",
"default": false,
"order": 5
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"dependencies": {
"adm-zip": "0.4.11",
"ini": "^1.3.4",
"request": "2.88.0",
"rimraf": "2.6.2"
},
"engines": {
"atom": ">0.50.0"
},
"license": "BSD-3-Clause",
"main": "./lib/wakatime",
"repository": "https://github.com/wakatime/atom-wakatime"
}