-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 930 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
{
"name": "t3-rs-geo-tiles",
"version": "0.0.2",
"description": "Tile generator for t3-rs-globe",
"main": "src/Grid.js",
"bin": {
"buildgrid": "bin/buildgrid"
},
"scripts": {
"pretest": "npm outdated || true",
"test": "mkdir -p tiles && bin/buildgrid -t -d 10 -r 500 -w 0.9 -c 0.55 -o ./tiles/grid.js -v resources/population_density_1994.json resources/equirectangle_projection.png",
"posttest": "eslint index.js src"
},
"repository": {
"type": "git",
"url": "https://github.com/redsift/t3-rs-geo-tiles.git"
},
"engines": {
"node": ">= 6.0.0"
},
"author": {
"name": "Rahul Powar",
"url": "https://medium.com/@rahulpowar"
},
"license": "MIT",
"dependencies": {
"d3-geo": "^1.4.1",
"d3-geo-projection": "^1.2.1",
"hexasphere.js": "*",
"minimist": "*",
"pngjs": "~3.0.0"
},
"devDependencies": {
"tape": "*",
"eslint": "^3.3.1"
}
}