-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "geojson2stl",
"version": "0.2.0",
"description": "Convert a GeoJSON to STL.",
"main": "./build/index.js",
"scripts": {
"build": "babel src -d build",
"pretest": "npm run build",
"posttest": "rm -rf build",
"test": "tape 'tests/**/*-test.js'",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"env"
]
},
"keywords": [
"geojson",
"STL",
"3D Printing"
],
"author": {
"name": "Russ Biggs",
"url": "https://russbiggs.com"
},
"homepage": "https://github.com/russbiggs/geojson2stl",
"license": "ISC",
"bin": {
"geojson2stl": "./bin/geojson2stl"
},
"repository": {
"type": "git",
"url": "https://github.com/russbiggs/geojson2stl.git"
},
"dependencies": {
"@turf/bbox": "^6.0.0",
"@turf/centroid": "^6.0.0",
"@turf/projection": "^6.0.0",
"colors": "^1.2.1",
"commander": "^2.15.0",
"earcut": "^2.1.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"tape": "^4.9.0"
}
}