-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.37 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": "d3plus-hierarchy",
"version": "1.1.0",
"description": "Nested, hierarchical, and cluster charts built on D3",
"main": "es/index.js",
"jsnext:main": "es/index",
"license": "MIT",
"homepage": "https://d3plus.org",
"repository": {
"type": "git",
"url": "https://github.com/d3plus/d3plus-hierarchy.git"
},
"keywords": [
"hierarchy",
"d3",
"d3plus",
"data",
"visualization"
],
"author": {
"name": "Dave Landry",
"email": "[email protected]",
"url": "http://www.dave-landry.com"
},
"dependencies": {
"d3-array": "^3.2.2",
"d3-collection": "^1.0.7",
"d3-hierarchy": "^3.1.2",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"d3plus-common": "^1.2.4",
"d3plus-shape": "^1.1.0",
"d3plus-viz": "^1.3.0"
},
"scripts": {
"build": "d3plus-build",
"dev": "d3plus-dev",
"docs": "d3plus-docs",
"env": "d3plus-env",
"release": "d3plus-release",
"test": "eslint src test && mocha 'test/**/*-test.js'"
},
"devDependencies": {
"d3plus-dev": "^1.2.9"
},
"module": "es/index.js",
"sideEffects": false,
"files": [
"bin",
"build/d3plus-hierarchy.js",
"build/d3plus-hierarchy.js.map",
"build/d3plus-hierarchy.min.js",
"es"
],
"jsdelivr": "build/d3plus-hierarchy.full.min.js",
"unpkg": "build/d3plus-hierarchy.full.min.js",
"type": "module"
}