forked from doi/fileheadercomment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 738 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 738 Bytes
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
{
"name": "fileheadercomment",
"displayName": "File Header Comment",
"description": "Insert File Header Comment such as date, time",
"version": "0.0.1",
"publisher": "doi",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.insertFileHeaderComment"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "extension.insertFileHeaderComment",
"title": "FileHeaderComment: Insert Comment at Cursor"
}]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
}
}