-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 947 Bytes
/
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
{
"name": "density-plot",
"version": "1.0.4",
"description": "A simple density plot / 2D histogram / heatmap.",
"main": "src/density-plot.js",
"scripts": {
"dev": "webpack -w",
"build": "webpack -p"
},
"author": "Andrew Luetgers <andrew.luetgers@gmail.com>",
"dependencies": {
"d3-array": "^1.2.1",
"d3-axis": "^1.0.8",
"d3-color": "^1.0.3",
"d3-scale": "^1.0.7",
"d3-scale-chromatic": "^1.1.1",
"d3-selection": "^1.2.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"webpack": "^3.10.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1"
},
"repository": {
"type": "git",
"url": "https:/github.com/andrewluetgers/density-plot.git"
},
"keywords": [
"density",
"plot",
"heatmap",
"2D",
"histogram"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewluetgers/density-plot/issues"
},
"homepage": "https://github.com/andrewluetgers/density-plot"
}