-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 816 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 816 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
{
"name": "jgf-dot",
"version": "1.1.1",
"description": "Convert a json graph into a dot file for use with Graphviz and other visualizers",
"main": "index.js",
"scripts": {
"test": "cat example/graph.json | node bin/cli.js > example/graph.dot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsongraph/jgf-dot.git"
},
"keywords": [
"json",
"graph",
"format",
"dot",
"graphviz",
"visualize"
],
"author": "rangermauve",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsongraph/jgf-dot/issues"
},
"homepage": "https://github.com/jsongraph/jgf-dot#readme",
"dependencies": {
"graphlib-dot": "^0.6.2",
"graphlib-json-graph": "^1.0.0",
"read-file-stdin": "^0.2.1"
},
"bin": {
"jgfdot": "bin/cli.js"
}
}