forked from vabene1111/kingraph
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1 KB
/
package.json
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
38
39
{
"name": "kingraph",
"description": "Plots family trees using JavaScript and Graphviz",
"version": "0.2.0",
"author": "Rico Sta. Cruz <rico@ricostacruz.com> (http://ricostacruz.com); updated by Alexander Willner (https://github.com/AlexanderWillner/kingraph)",
"bin": {
"kingraph": "bin/kingraph"
},
"dependencies": {
"js-yaml": "3.13.1",
"meow": "3.7.0",
"object-assign": "4.1.1",
"object-loops": "0.8.0",
"read-input": "0.3.1",
"strip-indent": "3.0.0",
"svg2png": "4.1.1",
"viz.js": "1.8.1"
},
"browser": {
"lib/to_png.js": "lib/to_png.browser.js"
},
"devDependencies": {
"istanbul": "^0.4.5",
"prettier": "^2.4.1",
"tape": "4.13.0"
},
"keywords": [
"ancestry",
"family",
"family tree",
"genealogy",
"pedigree"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "tape lib/**/*.test.js"
}
}