forked from RaoulMeyer/diagram-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 951 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 951 Bytes
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
{
"name": "diagram-as-code",
"version": "1.0.0",
"description": "This library allows you to easily create diagrams of your infrastructure in code.",
"main": "dist/lib.js",
"unpkg": "dist/lib.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaoulMeyer/diagram-as-code.git"
},
"keywords": [
"diagrams"
],
"author": "Raoul Meyer",
"contributors": [
"Matthew Scott"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/RaoulMeyer/diagram-as-code/issues"
},
"homepage": "https://github.com/RaoulMeyer/diagram-as-code#readme",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^6.1.0",
"rollup": "^1.28.0",
"rollup-plugin-terser": "^5.1.3",
"vis-network": "^6.5.0"
}
}