-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (104 loc) · 2.69 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
{
"name": "plantuml-helpers",
"displayName": "PlantUmlHelpers",
"description": "Editor extension that helps facilitate editing and creation of PlantUML diagrams",
"version": "0.7.2",
"publisher": "michael72",
"engines": {
"vscode": "^1.67.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/michael72/plantuml-helpers/issues"
},
"homepage": "https://github.com/michael72/plantuml-helpers/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/michael72/plantuml-helpers.git"
},
"categories": [
"Programming Languages",
"Formatters",
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:pumlhelper.swapLine",
"onCommand:pumlhelper.rotateLineLeft",
"onCommand:pumlhelper.rotateLineRight",
"onCommand:pumlhelper.autoFormat",
"onCommand:pumlhelper.reFormat"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pumlhelper.swapLine",
"title": "Swap arrow and content",
"category": "PlantUMLHelpers"
},
{
"command": "pumlhelper.rotateLineLeft",
"title": "Rotate arrow left",
"category": "PlantUMLHelpers"
},
{
"command": "pumlhelper.rotateLineRight",
"title": "Rotate arrow right",
"category": "PlantUMLHelpers"
},
{
"command": "pumlhelper.autoFormat",
"title": "Auto Format UML",
"category": "PlantUMLHelpers"
},
{
"command": "pumlhelper.reFormat",
"title": "Reformat UML",
"category": "PlantUMLHelpers"
}
],
"keybindings": [
{
"command": "pumlhelper.rotateLineLeft",
"key": "Alt+8"
},
{
"command": "pumlhelper.swapLine",
"key": "Alt+9"
},
{
"command": "pumlhelper.rotateLineRight",
"key": "Alt+0"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src test --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "nyc mocha",
"posttest": "nyc report",
"watchtest": "nyc mocha -w"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.3.1",
"@types/vscode": "^1.49.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.1",
"chai": "^4.2.0",
"eslint": "^8.1.0",
"glob": "^10.2.2",
"codecov": "^3.8.0",
"mocha": "^10.0.0",
"ts-node": "^10.1.0",
"typescript": "^5.0.2",
"vscode-test": "^1.4.0",
"nyc": "^15.1.0"
}
}