forked from bkrem/react-d3-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "react-d3-tree",
"version": "2.0.1",
"description": "React component to create interactive D3 tree hierarchies",
"author": "Ben Kremer",
"license": "MIT",
"bugs": {
"url": "https://github.com/bkrem/react-d3-tree/issues"
},
"homepage": "https://github.com/bkrem/react-d3-tree",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build:docs": "rimraf ./docs && typedoc",
"build": "rimraf lib && tsc",
"build:watch": "rimraf lib && tsc -w",
"lint": "eslint src/**/*.js",
"test": "jest --coverage --verbose",
"test:clean": "rimraf ./coverage",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage --verbose",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"show:cov": "open coverage/lcov-report/index.html",
"show:docs": "open docs/index.html",
"deploy:demo": "npm run build && npm run build:docs && cd demo && npm run build && npm run deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/bkrem/react-d3-tree.git"
},
"keywords": [
"react",
"d3",
"tree",
"component",
"graph",
"svg",
"hierarchical-data",
"hierarchy",
"d3-visualization",
"chart"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint",
"prettier --write",
"jest --findRelatedTests",
"git add"
],
"src/**/*.{ts,tsx}": [
"prettier --write",
"jest --findRelatedTests",
"git add"
]
},
"dependencies": {
"clone": "^2.1.1",
"d3-hierarchy": "^1.1.9",
"d3-selection": "^1.4.2",
"d3-shape": "^1.3.7",
"d3-zoom": "^1.8.3",
"dequal": "^2.0.2",
"react-transition-group": "^1.1.3",
"uuid": "^8.3.1"
},
"peerDependencies": {
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/d3-hierarchy": "^1.1.7",
"@types/d3-selection": "^1.4.3",
"@types/d3-shape": "^1.3.5",
"@types/d3-zoom": "^1.8.2",
"@types/react": "^16.9.17",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"husky": "^3.0.4",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"react": "^16.14.0",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"regenerator-runtime": "^0.12.0",
"rimraf": "^3.0.0",
"rollup": "^0.68.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "3",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^1.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typedoc": "^0.19.2",
"typescript": "^3.9.7"
}
}