-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (75 loc) · 1.78 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": "boj-vs-code",
"displayName": "boj-vs-code",
"description": "",
"version": "0.2.3",
"publisher": "bojvscode",
"repository": "https://github.com/boj-vs-code/client",
"icon": "resources/images/logo.png",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:.boj"
],
"preview": true,
"main": "./out/extension.js",
"contributes": {
"keybindings": [
{
"command": "bojvscode.showProblemInformation",
"key": "ctrl+alt+i"
},
{
"command": "bojvscode.executeTest",
"key": "ctrl+alt+r"
}
],
"commands": [
{
"command": "bojvscode.showProblemInformation",
"title": "Show Problem Information",
"category": "BOJ"
},
{
"command": "bojvscode.executeTest",
"title": "Run Testcases",
"category": "BOJ"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "rm -rf ./out/* && tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && gulp && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.18",
"tslint": "^6.1.2",
"typescript": "~4.0.3",
"vscode": "^1.1.37",
"@types/glob": "^7.1.1",
"@types/gulp": "^4.0.6",
"axios-mock-adapter": "^1.18.1",
"decache": "^4.5.1",
"del": "^5.1.0",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"istanbul": "^0.4.5",
"remap-istanbul": "^0.13.0"
},
"dependencies": {
"@types/tmp": "^0.2.0",
"axios": "^0.19.2",
"dom-parser": "^0.1.5",
"node-html-parser": "^1.2.20",
"tmp": "^0.1.0"
}
}