-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 4.32 KB
/
package.json
File metadata and controls
160 lines (160 loc) · 4.32 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"activationEvents": [
"onCommand:extension.login",
"onCommand:extension.logout",
"onCommand:extension.logTime",
"onCommand:extension.setDefaultProject",
"onCommand:extension.setDefaultCategory",
"onCommand:extension.setDefaultHours",
"onCommand:extension.goToWebsite",
"onCommand:extension.stats",
"onCommand:extension.getDefaults"
],
"author": "John Goldsmith <johngoldsm1@gmail.com>",
"badges": [
{
"url": "https://travis-ci.org/john-goldsmith/vscode-bigtime.svg?branch=develop",
"href": "https://travis-ci.org/john-goldsmith/vscode-bigtime",
"description": "Travis CI Build Status"
},
{
"url": "https://api.codeclimate.com/v1/badges/6ef99dba3917a1d91650/test_coverage",
"href": "https://codeclimate.com/github/john-goldsmith/vscode-bigtime/test_coverage",
"description": "Code Climate Test Coverage"
},
{
"url": "https://api.codeclimate.com/v1/badges/6ef99dba3917a1d91650/maintainability",
"href": "https://codeclimate.com/github/john-goldsmith/vscode-bigtime/maintainability",
"description": "Code Climate Maintainability"
},
{
"url": "https://coveralls.io/repos/github/john-goldsmith/vscode-bigtime/badge.svg?branch=develop",
"href": "https://coveralls.io/github/john-goldsmith/vscode-bigtime?branch=develop",
"description": "Coveralls Coverage Status"
},
{
"url": "https://david-dm.org/john-goldsmith/vscode-bigtime.svg",
"href": "https://david-dm.org",
"description": "David DM"
},
{
"url": "https://snyk.io/test/github/john-goldsmith/vscode-bigtime/badge.svg",
"href": "https://snyk.io/test/github/john-goldsmith/vscode-bigtime",
"description": "Snyk Known Vulnerabilities"
},
{
"url": "https://badges.greenkeeper.io/john-goldsmith/vscode-bigtime.svg",
"href": "https://greenkeeper.io/",
"description": "Greenkeeper"
}
],
"bugs": "https://github.com/john-goldsmith/vscode-bigtime/issues",
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "extension.login",
"title": "BigTime: Login"
},
{
"command": "extension.logout",
"title": "BigTime: Logout"
},
{
"command": "extension.logTime",
"title": "BigTime: Log time"
},
{
"command": "extension.setDefaultProject",
"title": "BigTime: Set default project"
},
{
"command": "extension.setDefaultCategory",
"title": "BigTime: Set default category"
},
{
"command": "extension.setDefaultHours",
"title": "BigTime: Set default hours"
},
{
"command": "extension.goToWebsite",
"title": "BigTime: Go to website"
},
{
"command": "extension.stats",
"title": "BigTime: Stats"
},
{
"command": "extension.getDefaults",
"title": "BigTime: Defaults"
}
],
"keybindings": [
{
"key": "ctrl+shift+l",
"command": "extension.logTime"
}
]
},
"dependencies": {
"bigtime-sdk": "0.9.0",
"moment": "2.24.0"
},
"description": "Log your time using BigTime",
"devDependencies": {
"@types/mocha": "5.2.6",
"@types/node": "11.11.3",
"coveralls": "3.0.3",
"eslint": "5.15.2",
"husky": "1.3.1",
"jest": "24.5.0",
"npm-run-all": "4.1.5",
"nyc": "13.3.0",
"typescript": "3.3.3333",
"vscode": "1.1.30"
},
"displayName": "BigTime",
"engines": {
"vscode": "^1.32.1"
},
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"homepage": "https://github.com/john-goldsmith/vscode-bigtime",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test:unit"
}
},
"icon": "images/bigtime-512x512.png",
"keywords": [
"time",
"time management",
"time tracking",
"bigtime",
"productivity"
],
"main": "./extension.js",
"name": "vscode-bigtime",
"nyc": {
"all": true
},
"publisher": "john-goldsmith",
"repository": {
"type": "git",
"url": "https://github.com/john-goldsmith/vscode-bigtime.git"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | $(npm bin)/coveralls",
"lint": "$(npm bin)/eslint extension.js ./bigtime.js ./state-keys.js ./commands/**/*.js ./errors/**/*.js ./test/**/*.js",
"postinstall": "node ./node_modules/vscode/bin/install",
"precommit": "npm run lint && npm test",
"test": "$(npm bin)/npm-run-all test:*",
"test:integration": "CODE_TESTS_PATH=$(npm prefix)/test/integration CODE_DISABLE_EXTENSIONS=true node ./node_modules/vscode/bin/test",
"test:unit": "jest ./test/unit"
},
"version": "1.0.1"
}