-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "replot-treemap",
"version": "0.12.0",
"description": "SVG treemap react component",
"main": "src/index.jsx",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"watch": "cd examples && webpack --watch",
"build-umd": "webpack src/index.js umd/replot-treemap.js",
"compile": "webpack --output-filename index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replot/replot-treemap.git"
},
"keywords": [
"react",
"SVG",
"treemap",
"visualization",
"chart"
],
"author": "Sanjay Guruprasad (http://sanjaypojo.com/)",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"bugs": {
"url": "https://github.com/replot/replot-treemap/issues"
},
"homepage": "https://github.com/replot/replot-treemap#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"eslint": "^3.16.1",
"eslint-plugin-react": "^6.10.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1"
},
"dependencies": {
"prop-types": "^15.6.0",
"react-motion": "^0.5.2",
"replot-core": "^0.2.1"
}
}