-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.87 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
117
{
"name": "azure-devops-pr",
"displayName": "Azure DevOps Pull Request",
"publisher": "davidecanton",
"repository": {
"type": "git",
"url": "https://github.com/DavideCanton/azure-devops-pr"
},
"description": "",
"version": "0.0.1",
"license": "MIT",
"engines": {
"vscode": "^1.79.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "azure-devops-pr.refresh",
"title": "Azure DevOps PR: Refresh",
"when": "scmProvider == git"
},
{
"command": "azure-devops-pr.replyThread",
"title": "Reply"
},
{
"command": "azure-devops-pr.createThread",
"title": "Comment"
}
],
"configuration": {
"title": "Azure DevOps Pull Requests",
"properties": {
"azure-devops-pr.token": {
"type": "string",
"description": "Token"
},
"azure-devops-pr.organization-name": {
"type": "string",
"description": "Organization name"
},
"azure-devops-pr.project-name": {
"type": "string",
"description": "Project name"
},
"azure-devops-pr.repository-name": {
"type": "string",
"description": "Repository name"
},
"azure-devops-pr.azure-origin": {
"type": "string",
"description": "Azure origin",
"default": "https://dev.azure.com/"
}
}
},
"menus": {
"comments/commentThread/context": [
{
"command": "azure-devops-pr.createThread",
"group": "inline",
"when": "commentController == azure-devops-pr-comment && commentThreadIsEmpty"
},
{
"command": "azure-devops-pr.replyThread",
"group": "inline",
"when": "commentController == azure-devops-pr-comment && !commentThreadIsEmpty"
}
]
}
},
"scripts": {
"clean": "rimraf ./out",
"vscode:prepublish": "npm run build:prod",
"test-compile": "tsc -p ./",
"build": "npm run clean && webpack --node-env development",
"build:watch": "npm run clean && webpack --node-env development --watch",
"build:watchMocks": "npm run clean && webpack --node-env development --watch --env mocks",
"build:prod": "npm run clean && webpack --node-env production --devtool hidden-source-map",
"package": "vsce package",
"lint": "eslint src --ext ts",
"format": "prettier -w src/",
"test": "vscode-test"
},
"dependencies": {
"azure-devops-node-api": "^12.0.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/lodash-es": "^4.17.0",
"@types/node": "20.2.5",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.24.0",
"concurrently": "^8.2.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"glob": "^8.1.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}