-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 969 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 969 Bytes
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
{
"name": "boxmodel-layout-for-d3",
"version": "1.2.2",
"description": "This custom layout for hierarchical data is inspired by the CSS box-model and adds margin and padding on all four sides of nested elements.",
"main": "dist/boxmodel-d3.min.js",
"unpkg": "dist/boxmodel-d3.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"keywords": [
"d3",
"boxmodel",
"css-boxmodel",
"layout",
"d3-layout"
],
"author": {
"name": "Peter Hofmann",
"email": "peterhfmnn@gmail.com",
"url": "https://formsandlines.eu"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/formsandlines/boxmodel-layout-for-d3"
},
"dependencies": {
"d3": "^5.9.2"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}