forked from deltoss/d3-mitch-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.91 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.91 KB
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
{
"name": "d3-mitch-tree",
"version": "1.0.5",
"description": "D3 plugin to create interactive navigatable hierarchical tree diagrams.",
"main": "./lib/d3-mitch-tree.js",
"scripts": {
"build-dev": "npm-run-all \"build-sass\" \"build-webpack-dev\" \"build-docs\"",
"build-prd": "npm-run-all \"build-sass\" \"build-webpack-prd\" \"build-docs\"",
"watch": "npm-run-all --parallel \"watch-sass\" \"watch-webpack\" \"watch-docs\"",
"build-sass": "node ./build/build-sass.js",
"watch-sass": "nodemon --watch ./src/sass --ext * --exec \"npm run build-sass\"",
"build-webpack-dev": "webpack --config webpack.config.js --mode=development",
"build-webpack-prd": "webpack --config webpack.config.js --mode=production",
"watch-webpack": "npm run build-webpack-dev -- --watch",
"build-docs": "esdoc -c esdoc.json",
"watch-docs": "nodemon --watch ./src/js --watch ./manual --watch ./README.md --ext * --exec \"npm run build-docs\""
},
"keywords": [
"d3",
"d3-module",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deltoss/d3-mitch-tree.git"
},
"author": "Michael Tran <MTran0011@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deltoss/d3-mitch-tree/issues"
},
"homepage": "https://d3-mitch-tree.netlify.com",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.4",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-publish-markdown-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"d3-hierarchy": "^1.1.8",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.3",
"d3-zoom": "^1.7.3",
"d3plus-text": "^0.9.33"
}
}