-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@benportner/js_family_tree",
"version": "1.0.3",
"description": "An interactive family tree visualization using d3-dag",
"main": "src/index.ts",
"type": "module",
"module": "dist/js_family_tree.esm.js",
"browser": "dist/js_family_tree.umd.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "mocha",
"watch": "rollup -c -w",
"build": "rollup -c",
"prettier": "prettier --write ./src",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BenPortner/js_family_tree.git"
},
"keywords": [
"typescript",
"family-tree",
"visualization",
"render",
"collapsible",
"interactive"
],
"author": "Benjamin W. Portner",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/BenPortner/js_family_tree/issues"
},
"homepage": "https://github.com/BenPortner/js_family_tree#readme",
"dependencies": {
"d3": "^7.9.0",
"d3-dag": "^1.1.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "^5.2.3",
"@types/d3": "^7.4.3",
"@types/jsdom": "^27.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"chai": "^6.2.1",
"jsdom": "^27.2.0",
"mocha": "^11.7.5",
"prettier": "^3.6.2",
"rollup": "^4.53.3",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typedoc-plugin-merge-modules": "^7.0.0",
"typescript": "^5.9.3"
},
"types": "dist/types/index.d.ts",
"overrides": {
"serialize-javascript": "7.0.5",
"diff": "8.0.4"
}
}