forked from jaime-olivares/yuml-diagram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 902 Bytes
/
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
{
"name": "yuml-diagram",
"displayName": "yUML",
"description": "UML diagramming package based on the yUML syntax",
"version": "1.1.0",
"publisher": "Jaime Olivares",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jaime-olivares/yuml"
},
"bugs": {
"url": "https://github.com/jaime-olivares/yuml/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/jaime-olivares/yuml/blob/master/README.md",
"engines": {
"node": ">=6.5.0"
},
"keywords": [
"yuml",
"uml",
"diagram",
"sequence",
"svg"
],
"main": "./index.js",
"runkitExampleFilename": "./test/npm_test.js",
"devDependencies": {
"browserify": "^16.2.3",
"uglifyify": "^5.0.1"
},
"scripts": {
"browserify": "browserify index.js --standalone yuml_diagram -g uglifyify -o ./dist/yuml-diagram.min.js"
}
}