-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "vscode-clock",
"displayName": "Clock",
"description": "Displays clock in status bar and insert into file",
"version": "0.0.1",
"publisher": "Compulim",
"engines": {
"vscode": "^0.10.1"
},
"icon": "icon.png",
"galleryBanner.color": "#0D5CAB",
"repository": {
"type": "git",
"url": "https://github.com/compulim/vscode-clock.git"
},
"bugs": "https://github.com/compulim/vscode-clock/issues/",
"homepage": "https://github.com/compulim/vscode-clock/blob/master/README.md",
"keywords": [
"clock",
"timer",
"alarm"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "clock.insertDateTime",
"title": "Clock: Insert date and time"
}],
"configuration": {
"type": "object",
"title": "Clock configuration",
"properties": {
"clock.dateFormat": {
"type": "string",
"default": "hh:MM TT",
"description": "Clock: Date format according to https://github.com/felixge/node-dateformat"
}
}
}
},
"devDependencies": {
"vscode": "0.11.x"
},
"dependencies": {
"dateformat": "^1.0.12"
}
}