-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.47 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.47 KB
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
{
"name": "codeowners-extended",
"displayName": "Codeowners Extended",
"description": "Get more out of your CODEOWNERS file",
"version": "2.0.0",
"license": "Apache-2.0",
"author": {
"name": "Noah Manneschmidt",
"email": "noah@manneschmidt.net"
},
"repository": {
"type": "git",
"url": "https://github.com/noahm/codeowners-extended.git"
},
"icon": "images/icon.png",
"publisher": "noahm",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:./CODEOWNERS",
"workspaceContains:./.bitbucket/CODEOWNERS",
"workspaceContains:./.github/CODEOWNERS",
"workspaceContains:./.gitlab/CODEOWNERS",
"workspaceContains:./docs/CODEOWNERS"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "codeowners.contactInfo",
"title": "Team List",
"category": "Codeowners"
},
{
"command": "codeowners.contactInfo.currentFile",
"title": "Current File Owners Info",
"category": "Codeowners"
}
],
"grammars": [
{
"language": "codeowners",
"scopeName": "text.codeowners",
"path": "./syntaxes/codeowners.tmLanguage.json"
}
],
"languages": [
{
"id": "codeowners",
"aliases": [
"CODEOWNERS",
"codeowners"
],
"filenames": [
"CODEOWNERS"
],
"configuration": "./language-configuration.json"
}
]
},
"scripts": {
"vscode:prepublish": "yarn clean && yarn build:prod",
"package": "vsce package --no-dependencies",
"build": "webpack",
"build:prod": "webpack --mode production --devtool hidden-source-map",
"clean": "rm dist/*",
"watch": "yarn run build --watch",
"pretest": "yarn run build && yarn run lint",
"lint": "eslint src --ext ts",
"typecheck": "tsc --noEmit",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"@nmann/codeowners": "^2.1.1",
"clipboardy": "^5.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^3.7.1",
"eslint": "^8.56.0",
"glob": "^13.0.0",
"mocha": "^10.4.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.0",
"typescript-eslint": "^8.48.1",
"webpack": "^5.104.0",
"webpack-cli": "^6.0.1"
},
"packageManager": "yarn@4.12.0"
}