aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..e9bb86b
--- /dev/null
+++ b/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "graphviz-to-grafn",
+ "version": "1.0.0",
+ "description": "Convert a graphviz graph to grafn code",
+ "main": "lib/graphviz_to_grafn",
+ "scripts": {
+ "lint": "eslint ."
+ },
+ "bin": {
+ "g2g": "./bin/g2g"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+ssh://git@gitlab.com/rbdr/graphviz-to-grafn.git"
+ },
+ "bugs": {
+ "url": "https://gitlab.com/rbdr/graphviz-to-grafn/issues"
+ },
+ "author": "Rubén Beltrán del Río <ruben@unlimited.pizza>",
+ "license": "Apache-2.0",
+ "devDependencies": {
+ "@hapi/eslint-config-hapi": "^13.0.2",
+ "@hapi/eslint-plugin-hapi": "^4.3.6",
+ "eslint": "^7.9.0"
+ },
+ "keywords": [
+ "graph",
+ "async",
+ "flow"
+ ],
+ "dependencies": {
+ "dotparser": "^1.0.0"
+ }
+}