-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.09 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
{
"name": "d3-org-chart-lazy",
"license": "MIT",
"author": "Matteo Gallesio",
"version": "0.1.0",
"type": "module",
"main": "dist/d3-org-chart-lazy.js",
"module": "dist/d3-org-chart-lazy.esm.js",
"types": "dist/types/index.d.ts",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/d3-hierarchy": "^3.1.2",
"@types/d3-org-chart": "^2.6.3",
"@types/d3-selection": "^3.0.4",
"rollup": "^3.12.0",
"terser": "^5.16.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"d3-org-chart": "^2.6.0"
},
"scripts": {
"build": "rollup -c ./build/rollup.config.js",
"clean": "rm -fr dist"
},
"description": "An extension to [d3-org-chart](https://github.com/bumbeishvili/org-chart) which enables lazy loading.",
"repository": {
"type": "git",
"url": "git+https://github.com/m-gallesio/d3-org-chart-lazy.git"
},
"bugs": {
"url": "https://github.com/m-gallesio/d3-org-chart-lazy/issues"
},
"homepage": "https://github.com/m-gallesio/d3-org-chart-lazy#readme"
}