-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
91 lines (91 loc) · 2.43 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
86
87
88
89
90
91
{
"name": "vscode-author-generator",
"displayName": "vscode-author-generator",
"description": "A Tool To Generate Author Info",
"version": "0.2.2",
"publisher": "edwardhjp",
"author": "xiaoping(edwardhjp@gmail.com)",
"repository": {
"type": "git",
"url": "https://github.com/excaliburhan/vscode-author-generator.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.generateAuthorInfo",
"onCommand:extension.updateAuthorInfo",
"onStartupFinished"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "extension.generateAuthorInfo",
"title": "Generate Author Info"
},
{
"command": "extension.updateAuthorInfo",
"title": "Update Author Info"
}
],
"keybindings": {
"command": "extension.updateAuthorInfo",
"key": "ctrl+u",
"mac": "cmd+u",
"when": "editorTextFocus"
},
"configuration": {
"type": "object",
"title": "author generator configuration",
"properties": {
"author-generator.author": {
"type": "string",
"default": "[author]",
"description": "author name"
},
"author-generator.email": {
"type": "string",
"default": "[example@mail.com]",
"description": "email address"
},
"author-generator.dateFormat": {
"type": "string",
"default": "YYYY-MM-DD HH:mm:ss",
"description": "date format string based on moment.js"
},
"author-generator.updateOnSave": {
"type": "boolean",
"default": false,
"description": "trigger updateInfo on save"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"build:js": "rollup -c rollup.config.js",
"build": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/node": "^12.12.21",
"eslint": "^6.7.2",
"rollup": "^2.41.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^3.7.3",
"vscode": "^1.1.36"
},
"dependencies": {
"moment": "^2.24.0"
}
}