]>
Commit | Line | Data |
---|---|---|
a597c682 RBR |
1 | { |
2 | "name": "graphviz-to-grafn", | |
3 | "version": "1.0.0", | |
4 | "description": "Convert a graphviz graph to grafn code", | |
5 | "main": "lib/graphviz_to_grafn", | |
6 | "scripts": { | |
7 | "lint": "eslint ." | |
8 | }, | |
9 | "bin": { | |
10 | "g2g": "./bin/g2g" | |
11 | }, | |
12 | "repository": { | |
13 | "type": "git", | |
14 | "url": "git+ssh://git@gitlab.com/rbdr/graphviz-to-grafn.git" | |
15 | }, | |
16 | "bugs": { | |
17 | "url": "https://gitlab.com/rbdr/graphviz-to-grafn/issues" | |
18 | }, | |
19 | "author": "Rubén Beltrán del Río <ruben@unlimited.pizza>", | |
20 | "license": "Apache-2.0", | |
21 | "devDependencies": { | |
22 | "@hapi/eslint-config-hapi": "^13.0.2", | |
23 | "@hapi/eslint-plugin-hapi": "^4.3.6", | |
24 | "eslint": "^7.9.0" | |
25 | }, | |
26 | "keywords": [ | |
27 | "graph", | |
28 | "async", | |
29 | "flow" | |
30 | ], | |
31 | "dependencies": { | |
32 | "dotparser": "^1.0.0" | |
33 | } | |
34 | } |