-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 2.7 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
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
{
"name": "zentao",
"displayName": "禅道",
"description": "Zentao integration.",
"publisher": "zentao",
"version": "0.3.5",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/easysoft/zentao-vscode-integration"
},
"license": "MIT",
"preview": true,
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Other"
],
"keywords": [
"zentao"
],
"activationEvents": [
"onCommand:zentao.login",
"onCommand:zentao.selectProduct",
"onCommand:zentao.selectProject",
"onCommand:zentao.selectExecution",
"onCommand:zentao.pickObjectsForCommit",
"onCommand:zentao.viewObject",
"onCommand:zentao.writeCommitMessage",
"onLanguage:git-commit"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "zentao.login",
"title": "配置 (config)",
"category": "禅道 (Zentao)"
},
{
"command": "zentao.selectProduct",
"title": "切换当前产品 (change product)",
"category": "禅道 (Zentao)"
},
{
"command": "zentao.selectProject",
"title": "切换当前项目 (change project)",
"category": "禅道 (Zentao)"
},
{
"command": "zentao.selectExecution",
"title": "切换当前执行 (change execution)",
"category": "禅道 (Zentao)"
},
{
"command": "zentao.pickObjectsForCommit",
"title": "选择对象形成 Commit Message (pick objects for commit)",
"category": "禅道 (Zentao)"
},
{
"command": "zentao.viewObject",
"title": "查看 (view)",
"category": "禅道 (Zentao)"
},
{
"command": "zentao.writeCommitMessage",
"title": "撰写 Commit Message (自动补全)",
"category": "禅道 (Zentao)"
}
],
"configuration":[
{
"title": "Zentao",
"properties": {
"zentao.login.clearState": {
"type": "boolean",
"description": "登录后重置之前选择的产品、项目等",
"default": true
},
"zentao.filter.filterBugs": {
"type": "boolean",
"description": "不展示已解决、已关闭的 Bug",
"default": true
},
"zentao.filter.filterTasks": {
"type": "boolean",
"description": "不展示已取消、已完成、已关闭的任务",
"default": true
},
"zentao.filter.filterStories": {
"type": "boolean",
"description": "不展示已关闭、未通过评审的需求",
"default": true
}
}
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"build": "vsce package"
},
"devDependencies": {
"@types/node": "14.x",
"@types/vscode": "^1.62.0",
"eslint": "^8.1.0",
"typescript": "^4.4.4",
"vsce": "^2.5.3"
},
"dependencies": {
"axios": "^0.24.0",
"striptags": "^3.2.0"
}
}