-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "d3-geogrid",
"version": "0.0.1",
"description": "Turn real maps into regular or hexagonal grids automatically",
"keywords": [
"d3",
"d3-module",
"hexagonal map",
"geo",
"hexabin",
"grid",
"data vizualization",
"honeycomb map"
],
"license": "BSD-3-Clause",
"main": "build/d3-geogrid.js",
"jsnext:main": "index",
"homepage": "https://github.com/maryzam/d3-geogrid#readme",
"repository": {
"type": "git",
"url": "https://github.com/maryzam/d3-geogrid.git"
},
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development",
"start": "webpack-dev-server",
"test": "babel-tape-runner test/**/*-test.js | faucet"
},
"peerDependencies": {
"d3": "^5.1.0",
"d3-geo": "^1.10.0",
"topojson": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-tape-runner": "2.0.1",
"d3": "^5.7.0",
"d3-geo": "^1.11.1",
"faucet": "0.0.1",
"tape": "^4.9.1",
"topojson": "^3.0.2",
"uglifyjs-webpack-plugin": "1.1.2",
"webpack": "^4.23.1",
"webpack-cli": "^2.1.5",
"webpack-dev-server": "^3.1.10"
}
}