-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.79 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
{
"name": "jira-worklog",
"displayName": "Jira worklog",
"description": "Jira worklog extension for vscode",
"version": "0.2.0",
"engines": {
"vscode": "^1.31.0"
},
"icon": "screenshots/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/aduryagin/jira-vscode-worklog.git"
},
"publisher": "AlexeyDuryagin",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": [
{
"title": "Jira worklog",
"properties": {
"jira-worklog.host": {
"type": "string",
"description": "Jira hostname (https://jira.domain.com)",
"scope": "window"
},
"jira-worklog.login": {
"type": "string",
"description": "Jira login",
"scope": "window"
},
"jira-worklog.password": {
"type": "string",
"description": "Jira password",
"scope": "window"
},
"jira-worklog.issueIdRegex": {
"type": "string",
"description": "Jira issueId Regex",
"scope": "window"
},
"jira-worklog.worklog.comment": {
"type": "string",
"description": "Worklog comment. Available variables - {issueId}.",
"scope": "window"
},
"jira-worklog.basicAuth.login": {
"type": "string",
"description": "Basic access authentication login",
"scope": "window"
},
"jira-worklog.basicAuth.password": {
"type": "string",
"description": "Basic access authentication password",
"scope": "window"
}
}
}
]
},
"main": "./src/extension.js",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"eslint": "^5.13.0",
"@types/node": "^10.12.21",
"@types/mocha": "^2.2.42"
}
}