-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.57 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
{
"name": "testfile-generator-for-junit",
"publisher": "marcoLee",
"displayName": "Junit Testfile Generator",
"description": "it provide context menu for generating junit test file",
"version": "0.0.7",
"engines": {
"vscode": "^1.41.0"
},
"icon": "resource/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/lee95292/JunitTestGeneratorForVSCode"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:java",
"onCommand:extension.generateTest"
],
"main": "./src/extension.js",
"contributes": {
"menus": {
"explorer/context": [
{
"command": "extension.generateTest",
"when": "resourceExtname==.java"
},
{
"command": "extension.configTestLocation",
"when": "explorerResourceIsFolder"
}
],
"editor/context": [
{
"command": "extension.generateTest",
"when": "resourceExtname==.java"
}
]
},
"commands": [
{
"command": "extension.generateTest",
"title": "Generate Junit Testfile"
},
{
"command": "extension.configTestLocation",
"title": "Set as Test Location"
}
]
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^13.13.4",
"@types/vscode": "^1.44.0",
"eslint": "^6.6.0",
"glob": "^7.1.5",
"jest": "^25.5.4",
"typescript": "^3.8.3",
"vscode-test": "^1.2.2"
},
"dependencies": {
"fs": "0.0.2",
"minimist": "^1.2.5"
}
}