forked from deltoss/d3-mitch-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.27 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
{
"name": "d3-mitch-tree",
"version": "0.0.0-development",
"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\"",
"commit": "npx git-cz"
},
"keywords": [
"d3",
"d3-module",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deltoss/d3-mitch-tree.git"
},
"author": "Michael Tran <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deltoss/d3-mitch-tree/issues"
},
"homepage": "https://d3-mitch-tree.netlify.com",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"autoprefixer": "^9.7.3",
"babel-loader": "^8.0.6",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-publish-markdown-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"husky": "^4.0.1",
"mkdirp": "^1.0.4",
"node-sass": "^4.13.0",
"nodemon": "^2.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.24",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"d3-hierarchy": "^1.1.9",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-zoom": "^1.8.3",
"d3plus-text": "^0.9.50"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}