forked from bpmn-io/vs-code-bpmn-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.96 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
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "vs-code-bpmn-io",
"displayName": "BPMN.io Editor",
"description": "Edit BPMN 2.0 files. Based on bpmn.io tools.",
"license": "MIT",
"version": "0.12.0",
"publisher": "bpmn-io",
"repository": "https://github.com/bpmn-io/vs-code-bpmn-io/",
"engines": {
"vscode": "^1.38.0"
},
"icon": "resources/logo_marketplace.png",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:bpmn",
"onCommand:extension.bpmn-io.edit",
"onWebviewPanel:bpmn-io.edit"
],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "bpmn",
"aliases": [
"BPMN",
"bpmn"
],
"extensions": [
".bpmn2",
".bpmn",
".bpmn20.xml"
]
}
],
"commands": [
{
"command": "extension.bpmn-io.edit",
"title": "Open BPMN Modeler",
"icon": {
"light": "./resources/icon_light.svg",
"dark": "./resources/icon_dark.svg"
}
}
],
"keybindings": [
{
"command": "extension.bpmn-io.edit",
"key": "shift+ctrl+v",
"mac": "shift+cmd+v",
"when": "editorTextFocus && resourceLangId == bpmn"
}
],
"menus": {
"commandPalette": [
{
"when": "resourceLangId == bpmn",
"command": "extension.bpmn-io.edit"
}
],
"explorer/context": [
{
"when": "resourceLangId == bpmn",
"command": "extension.bpmn-io.edit",
"group": "navigation"
}
],
"editor/context": [
{
"when": "resourceLangId == bpmn",
"command": "extension.bpmn-io.edit",
"group": "navigation"
}
],
"editor/title": [
{
"when": "resourceLangId == bpmn",
"command": "extension.bpmn-io.edit",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "run-s compile:clean compile:ts compile:assets",
"compile:ts": "tsc -p ./",
"compile:clean": "shx rm -rf out",
"compile:assets": "shx cp -r src/assets out",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/shelljs": "^0.8.8",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/vscode": "1.38.0",
"chai": "^4.3.4",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.4",
"shx": "^0.3.3",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"tslint": "^5.20.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.2.4",
"vscode-test": "^1.5.2"
},
"dependencies": {
"bpmn-js": "^8.5.0",
"vscode-codicons": "^0.0.17"
}
}