-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.52 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
{
"name": "azdo-teammembers",
"displayName": "Azure DevOps Team Members",
"description": "",
"version": "0.1.0",
"publisher": "rfverbruggen",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown",
"Azure",
"DevOps"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/src/extension.js",
"contributes": {
"capabilities": {
"hoverProvider": "true"
},
"configuration": {
"properties": {
"azdo-teammembers.teammembers": {
"type": "array",
"default": []
}
}
}
},
"license": "MIT",
"homepage": "https://github.com/rfverbruggen/azdo-teammembers/blob/main/README.md",
"bugs": {
"url": "https://github.com/rfverbruggen/azdo-teammembers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rfverbruggen/azdo-teammembers.git"
},
"icon": "images/azdo-teammembers_logo.png",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "22.x",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"eslint": "^8.57.1",
"glob": "^11.0.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"typescript": "^5.5.4"
}
}