forked from chdsbd/vscode-github-code-owners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.99 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
{
"name": "github-code-owners",
"displayName": "GitHub Code Owners",
"description": "Quickly see GitHub Code Owners for the current file. Add syntax highlighting for CODEOWNERS files.",
"publisher": "chdsbd",
"license": "SEE LICENSE IN LICENSE",
"version": "2.5.0",
"icon": "images/logo256.png",
"homepage": "https://github.com/chdsbd/vscode-github-code-owners/blob/master/README.md",
"keywords": [
"git",
"github",
"codeowners",
"owners"
],
"repository": {
"type": "git",
"url": "https://github.com/chdsbd/vscode-github-code-owners.git"
},
"bugs": {
"url": "https://github.com/chdsbd/vscode-github-code-owners/issues"
},
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"workspaceContains:**/CODEOWNERS"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "github-code-owners.show-owners",
"title": "GitHub Code Owners: Show owners of current file"
}
],
"languages": [
{
"id": "codeowners",
"aliases": [
"CODEOWNERS",
"codeowners"
],
"filenames": [
"CODEOWNERS"
],
"configuration": "./languages/code-owners-language-configuration.json"
}
],
"grammars": [
{
"language": "codeowners",
"scopeName": "text.codeowners",
"path": "./syntaxes/codeowners.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "./s/build"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@types/vscode": "^1.53.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"esbuild": "^0.17.10",
"eslint": "^8.35.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@snyk/github-codeowners": "github:chdsbd/github-codeowners#chris/line-number-information"
},
"volta": {
"node": "18.14.2"
}
}