-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "jira",
"displayName": "vsc-jira",
"description": "view, comment, edit, create issues in jira",
"version": "0.1.0",
"publisher": "web-dave",
"engines": {
"vscode": "^1.0.0"
},
"bugs": {
"url": "https://github.com/web-dave/vsc-jira/issues"
},
"homepage": "https://github.com/web-dave/vsc-jira/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/web-dave/vsc-jira.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.jiraCommit"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.jiraCommit",
"title": "jira issue add git commit as comment"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"jira-client": "^3.0.2",
"typescript": "^1.8.5",
"vscode": "^0.11.0"
},
"dependencies": {
"jira-client": "^3.0.2"
}
}