forked from zhaopengme/vscode-fileheader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.69 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
{
"name": "vscode-fileheader",
"displayName": "vscode-fileheader",
"description": "insert header comment,and automatically update the time.",
"version": "0.0.2",
"publisher": "mikey",
"author": {
"name": "mikey.zhaopeng",
"url": "http://zhaopeng.me"
},
"galleryBanner": {
"color": "#3B4859",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/zhaopengme/vscode-fileheader.git"
},
"bugs": {
"url": "https://github.com/zhaopengme/vscode-fileheader/issues",
"email": "imzhpe@qq.com"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.fileheader",
"onLanguage:javascript"
],
"main": "./extension",
"contributes": {
"configuration": {
"type": "object",
"title": "File header Configuration",
"properties": {
"fileheader.Author": {
"type": "string",
"default": "mikey.zhaopeng",
"description": "By default, create file username"
},
"fileheader.tpl": {
"type": "string",
/*
* @Author: huangyuan
* @Date: 2017-02-28 17:51:56
* @Last Modified by: huangyuan413026@163.com
* @Last Modified time: 2017-02-28 17:51:56
* @Description: 增加Description字段
*/
"default": "/*\r\n * @Author: {author}\r\n * @Email: {email}\r\n * @Date: {createTime}\r\n * @Last Modified by: {lastModifiedBy}\r\n * @Last Modified time: {updateTime}\r\n * @Description: Description\r\n */\r\n",
"description": "By default, common template. Do not modify it!!!!!"
},
"fileheader.LastModifiedBy": {
"type": "string",
"default": "mikey.zhaopeng",
"description": "By default, update file username."
}
}
},
"commands": [
{
"command": "extension.fileheader",
"title": "fileheader"
}
],
"keybindings": [
{
"command": "extension.fileheader",
"key": "ctrl+alt+i",
"when": "editorTextFocus"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
}
}