-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "d3-treemap-flex",
"version": "0.1.1",
"description": "The tiling method for d3-treemap to plot block diagrams.",
"type": "module",
"packageManager": "[email protected]",
"main": "src/index.js",
"module": "src/index.js",
"homepage": "https://github.com/pearmini/d3-treemap-flex",
"jsdelivr": "dist/d3-treemap-flex.umd.min.js",
"unpkg": "dist/d3-treemap-flex.umd.min.js",
"keywords": [
"d3",
"d3-module",
"layout",
"treemap",
"hierarchy"
],
"author": {
"name": "Bairui SU",
"url": "https://github.com/pearmini"
},
"repository": {
"type": "git",
"url": "https://github.com/pearmini/d3-treemap-flex.git"
},
"license": "ISC",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"sideEffects": false,
"scripts": {
"test": "pnpm run test:lint && pnpm run test:format && pnpm run test:js",
"test:js": "vitest",
"test:lint": "eslint src test",
"test:format": "prettier --check src test",
"build": "rm -rf dist && rollup -c",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "pnpm run docs:build && gh-pages -d docs/.vitepress/dist",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"d3": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"genji-theme-vitepress": "^0.2.1",
"gh-pages": "^6.1.1",
"prettier": "^3.2.5",
"rollup": "^4.16.3",
"rollup-plugin-terser": "^7.0.2",
"vite": "^5.2.10",
"vitepress": "^1.1.3",
"vitest": "^1.5.0"
}
}