-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
109 lines (109 loc) · 2.31 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
{
"name": "bugfixer",
"private": true,
"displayName": "Bug Fixer",
"publisher": "sparrow-and-codemind",
"version": "0.9.2",
"icon": "bugfixer.ico",
"repository": "https://github.com/program-repair-project/bugfixer",
"engines": {
"vscode": "^1.66.0"
},
"categories": [
"Debuggers",
"Testing",
"Linters"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:java",
"onLanguage:python"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "bugfixer.run_saver",
"title": "Bugfixer 실행: 명세 없이 분석 [C]"
},
{
"command": "bugfixer.run_npex",
"title": "Bugfixer 실행: 명세 없이 분석 [Java]"
},
{
"command": "bugfixer.run_pyter",
"title": "Bugfixer 실행: 명세 없이 분석 [Python]"
},
{
"command": "bugfixer.run_moses",
"title": "Bugfixer 실행: 명세 기반 분석 [C]"
},
{
"command": "bugfixer.progress_detail",
"title": "Bugfixer 실행 중: 자세히보기"
},
{
"command": "print_progress_test",
"title": "Bugfixer 실행 중: 출력 테스트"
},
{
"command": "bugfixer.set_engine",
"title": "Bugfixer: 엔진 설정",
"args": [
"saver",
"npex"
]
}
],
"configuration": [
{
"type": "object",
"title": "Bugfixer 설정",
"properties": {
"bugfixer.log_level": {
"type": "string",
"default": "trace",
"enum": [
"info",
"debug",
"trace"
],
"description": "Log Level"
}
}
},
{
"type": "object",
"title": "Bugfixer 분석 결과 경로 설정",
"properties": {
"bugfixer.infer_out_path": {
"type": "string",
"default": "./output",
"description": "Set infer-out volume to local path"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/fs-readdir-recursive": "^1.1.0",
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"dependencies": {
"fs-readdir-recursive": "^1.1.0",
"install": "^0.13.0",
"npm": "^8.15.0",
"winston": "^3.8.1"
}
}