forked from rstacruz/kingraph
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 769 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 769 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
{
"name": "kingraph",
"description": "Plots family trees using JavaScript and Graphviz",
"version": "0.1.1",
"author": "Rico Sta. Cruz <rico@ricostacruz.com> (http://ricostacruz.com)",
"bin": {
"kingraph": "bin/kingraph"
},
"dependencies": {
"js-yaml": "3.6.1",
"meow": "3.7.0",
"object-assign": "4.1.0",
"object-loops": "0.8.0",
"read-input": "0.3.1",
"strip-indent": "2.0.0",
"svg2png": "4.1.0",
"viz.js": "1.3.0"
},
"browser": {
"lib/to_png.js": "lib/to_png.browser.js"
},
"devDependencies": {
"tape": "4.6.2"
},
"keywords": [
"ancestry",
"family",
"family tree",
"genealogy"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "tape lib/**/*.test.js"
}
}