-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "repo-status",
"displayName": "Repository status",
"description": "Shows repository branch grade and issue count in the status bar.",
"version": "1.1.0",
"publisher": "codefactor",
"repository": {
"type": "git",
"url": "https://github.com/codefactor-io/vscode-repo-status"
},
"icon": "codefactor.png",
"bugs": {
"url": "https://github.com/codefactor-io/vscode-repo-status/issues"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Programming Languages",
"Linters"
],
"keywords":[
"code analysis",
"automated code review",
"linters"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"typescript": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"@types/vscode": "^1.25.0"
},
"dependencies": {
"axios": "^0.21.0"
},
"extensionDependencies": [
"vscode.git"
]
}