-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "tile-maker",
"description": "Node web services and example front end to convert a collection of ESRI shapefiles into a complete administrative geography",
"version": "0.0.1",
"private": false,
"author": [
"Peter Hambly <phambly@fastmail.co.uk>"
],
"maintainers": [
"Peter Hambly <phambly@fastmail.co.uk>"
],
"repository": {
"type": "git",
"url": "https://github.com/tile-maker/tiler-maker.git"
},
"keywords": [
"Topojson",
"Geojson",
"Shapefile",
"Simplification"
],
"dependencies": {
"adm-zip": "^0.4.7",
"async": "^2.0.0-rc.5",
"chroma-js": "^1.1.1",
"cjson": "^0.4.0",
"connect-busboy": "0.0.2",
"es6-promise": "^3.2.1",
"express": "^4.13.4",
"forever": "^0.15.2",
"form-data": "^1.0.0-rc4",
"geojson2wkt": "^1.0.0",
"helmet": "^1.3.0",
"jquery-formdata": "^0.1.3",
"jszip": "^2.6.0",
"magic-globals": "^0.5.0",
"mapshaper": "^0.3.25",
"morgan": "^1.7.0",
"mutexjs": "^1.2.0",
"node-uuid": "^1.4.7",
"object-sizeof": "^1.0.10",
"reproject": "^1.1.1",
"request": "^2.72.0",
"request-debug": "^0.2.0",
"shapefile": "^0.3.1",
"srs": "^1.1.0",
"topojson": "^1.6.26",
"turf": "^3.0.5",
"wellknown": "^0.4.2",
"xml2js": "^0.4.16"
},
"scripts": {
"test": "node test/request-geo2TopoJSON.js && node test/request-shpConvert.js",
"start": "forever start -verbose -l forever.log -e forever.err -o forever.log --append ./expressServer.js",
"stop": "forever stop -verbose -l forever.log -e forever.err -o forever.log --append ./expressServer.js",
"pretest": "node test/make_bighelloworld.js"
},
"engines": {
"node": ">= 5.4.x"
},
"license": "LGPL-3.0"
}