-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 1.84 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
{
"name": "fsm-viewer",
"displayName": "Finite state machine viewer",
"description": "View finite state machines using fsm-as-promised library as UML diagrams in VSCode",
"version": "1.8.0",
"license": "MIT",
"publisher": "vstirbu",
"repository": {
"type": "git",
"url": "https://github.com/vstirbu/fsm-viewer.git"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:fsmViewer.view"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "fsmViewer.view",
"title": "View FSM as UML diagram"
},
{
"command": "fsmViewer.save",
"title": "Save SVG",
"icon": {
"light": "./images/svg-light.png",
"dark": "./images/svg-dark.png"
}
}
],
"menus": {
"commandPalette": [
{
"command": "fsmViewer.save",
"when": "false"
}
],
"editor/title": [
{
"command": "fsmViewer.save",
"group": "navigation",
"when": "fsmViewer:canExport"
}
]
}
},
"scripts": {
"build": "parcel build viewer/index.js -d dist",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.1",
"eslint": "^4.19.1",
"parcel": "^1.12.3",
"typescript": "^2.8.1",
"vscode": "^1.1.33"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/generator": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"d3": "^4.12.2",
"dagre-d3": "^0.6.1",
"fsm-as-promised": "^0.16.0",
"fsm2dot": "^2.2.2"
}
}