forked from coreseekdev/react-org-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "@ekumenlabs.com/react-org-chart",
"version": "0.1.2",
"description": "Simple, high-performance react component for d3 org chart",
"repository": "https://github.com/ekumenlabs/react-org-chart.git",
"main": "dist/index.js",
"directories": {
"example": "src/examples"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode production --watch",
"clean": "rimraf dist",
"publish": "npm run clean && npm run build && npm publish --access=public"
},
"keywords": [],
"author": "Fouad Matin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"faker": "^4.1.0",
"glob": "^7.1.2",
"lodash": "^4.17.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
},
"peerDependencies": {
"d3": ">= 3.x < 4",
"react": ">= 15.x",
"react-dom": ">= 15.x"
}
}