-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.8 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
{
"name": "clean-cadet",
"displayName": "Clean CaDET",
"description": "A plugin that interacts with the challenge system offered by the Smart Tutor module of the Clean CaDET Platform (https://github.com/Clean-CaDET/platform).",
"version": "0.0.5",
"publisher": "CleanCaDET",
"repository": {
"type": "git",
"url": "https://github.com/Clean-CaDET/platform-plugin-vscode"
},
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:clean-cadet.start"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "clean-cadet.start",
"title": "CCaDET Start"
},
{
"command": "clean-cadet.challenge",
"title": "CCaDET Submit Challenge"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == csharp || explorerResourceIsFolder",
"command": "clean-cadet.challenge",
"group": "2_workspace"
}
]
},
"configuration": {
"title": "Clean CaDET",
"properties": {
"platform.tutorUrl": {
"type": "string",
"default": "http://clean-cadet.tech/smart-tutor/api/",
"description": "Specifies the base URL for the Smart Tutor endpoints."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^8.2.3",
"@types/node": "^12.20.55",
"@types/vscode": "^1.68.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"glob": "^7.2.3",
"mocha": "^8.4.0",
"typescript": "^4.7.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"axios": "^0.21.4"
}
}