forked from bmount/shp2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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" : "shp2json",
"description" : "Convert shapefile zip archives into GeoJSON using ogr2ogr with a streaming interface",
"version" : "0.1.1",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/shp2json.git"
},
"main" : "index.js",
"bin" : {
"shp2json" : "bin/cli.js"
},
"keywords" : [
"shapefile",
"shp",
"zip",
"stream",
"convert",
"geojson",
"geo",
"gis",
"json"
],
"directories" : {
"lib" : ".",
"example" : "example",
"test" : "test"
},
"scripts" : {
"test" : "tap test/*.js"
},
"dependencies" : {
"seq" : "0.3.x",
"morestreams" : "0.1.x",
"findit" : "0.1.x"
},
"devDependencies" : {
"tap" : "0.0.x"
},
"engines" : {
"node" : ">=0.4.0"
},
"license" : "MIT",
"author" : {
"name" : "James Halliday",
"email" : "[email protected]",
"url" : "http://substack.net"
}
}