-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-d3-tooltip",
"version": "1.4.12",
"description": "react-d3 tooltip implementation",
"main": "./lib/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./lib && BABEL_ENV=production ./node_modules/.bin/babel ./src --out-dir ./lib",
"prod": "NODE_ENV=0 webpack --config webpack.prod.config.js && NODE_ENV=1 webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git@github.com:react-d3/react-d3-tooltip.git"
},
"keywords": [
"react-d3",
"tooltip"
],
"author": "chilijung <chilijung@gmail.com> (http://lijung.com/)",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/react-d3/react-d3-tooltip/issues"
},
"homepage": "https://github.com/react-d3/react-d3-tooltip",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.5.2",
"babel-eslint": "^3.1.9",
"babel-loader": "^6.2.3",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.2",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "1.0.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.18.0",
"dsv-loader": "^1.0.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.3",
"react-bootstrap": "^0.28.3",
"react-router": "^2.0.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.11.0",
"webpack-hot-middleware": "^2.9.0"
},
"peerDependencies": {
"react": "^0.14.7"
},
"dependencies": {
"d3": "^3.5.6",
"d3-array": "^0.7.1",
"d3-collection": "^0.1.2",
"d3-selection": "^0.7.0",
"d3-voronoi": "^0.3.2",
"react-d3-basic": "^1.6.9",
"react-d3-core": "^1.2.6",
"react-d3-shape": "^0.2.12",
"react-dom": "^0.14.7",
"react-faux-dom": "^2.1.0"
}
}