forked from jaime-olivares/vscode-yuml
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "yuml2svg",
"displayName": "yUML to SVG",
"description": "UML diagramming tool based on the yUML syntax",
"version": "5.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aduh95/yuml2svg"
},
"bugs": {
"url": "https://github.com/aduh95/yuml2svg/issues"
},
"engines": {
"node": "^12.17.0 || >=13.2.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"keywords": [
"yuml",
"uml",
"diagram",
"sequence",
"markdown"
],
"type": "module",
"main": "./index.mjs",
"exports": {
".": "./index.mjs"
},
"bin": {
"yuml2svg": "bin/yuml2svg"
},
"scripts": {
"lint": "eslint --ext=.js,.mjs ./src/",
"test": "node test/bootstrap.js",
"preversion": "yarn lint && yarn test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@aduh95/viz.js": "^3.0.1",
"color": "^3.0.0",
"jsdom": "^16.0.0"
},
"devDependencies": {
"@types/node": "*",
"eslint": "^7.0.0-rc.0",
"eslint-config-defaults": "^9.0.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^2.0.1"
}
}