-
Notifications
You must be signed in to change notification settings - Fork 22.9k
/
package.json
92 lines (92 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "d3",
"version": "7.9.0",
"description": "Data-Driven Documents",
"homepage": "https://d3js.org",
"repository": {
"type": "git",
"url": "https://github.com/d3/d3.git"
},
"keywords": [
"d3",
"dom",
"visualization",
"svg",
"animation",
"canvas"
],
"license": "ISC",
"author": {
"name": "Mike Bostock",
"url": "https://bost.ocks.org/mike"
},
"type": "module",
"files": [
"dist/d3.js",
"dist/d3.min.js",
"src/**/*.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/d3.min.js",
"unpkg": "dist/d3.min.js",
"exports": {
"umd": "./dist/d3.min.js",
"default": "./src/index.js"
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-chord": "^3.0.1",
"d3-color": "^3.1.0",
"d3-contour": "^4.0.2",
"d3-delaunay": "^6.0.4",
"d3-dispatch": "^3.0.1",
"d3-drag": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-fetch": "^3.0.1",
"d3-force": "^3.0.0",
"d3-format": "^3.1.0",
"d3-geo": "^3.1.1",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-path": "^3.1.0",
"d3-polygon": "^3.0.1",
"d3-quadtree": "^3.0.1",
"d3-random": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time": "^3.1.0",
"d3-time-format": "^4.1.0",
"d3-timer": "^3.0.1",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0"
},
"devDependencies": {
"@observablehq/plot": "^0.6.7",
"@observablehq/runtime": "^5.7.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"rollup": "^3.29.4",
"topojson-client": "^3.1.0",
"vitepress": "^1.4.0"
},
"scripts": {
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && rollup -c",
"postpublish": "git push && git push --tags",
"docs:dev": "node --experimental-network-imports node_modules/vitepress/dist/node/cli.js dev docs",
"docs:build": "./prebuild.sh && node --experimental-network-imports node_modules/vitepress/dist/node/cli.js build docs",
"docs:preview": "vitepress preview docs"
},
"engines": {
"node": ">=12"
}
}