forked from mbloch/mapshaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mapshaper",
"version": "0.5.82",
"description": "A tool for editing vector datasets for mapping and GIS.",
"keywords": [
"shapefile",
"topojson",
"geojson",
"cartography",
"simplification",
"topology",
"gis"
],
"author": "Matthew Bloch <masiyou@gmail.com>",
"contributors": [],
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mbloch/mapshaper"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "mocha -r esm --parallel --jobs 4 --check-leaks -R dot",
"build": "rollup --config",
"prepublishOnly": "npm test; ./pre-publish",
"postpublish": "./release_web_ui; ./release_github_version",
"browserify_old": "browserify -r sync-request -r mproj -r buffer -r iconv-lite -r fs -r flatbush -r rw -r path -r d3-scale-chromatic -r d3-color -r d3-interpolate -o www/modules.js",
"browserify": "browserify -r sync-request -r mproj -r buffer -r iconv-lite -r fs -r flatbush -r rw -r path -r d3-scale-chromatic -r d3-color -r d3-interpolate -r kdbush -o www/modules.js",
"watch": "rollup --config --watch",
"dev": "rollup --config --watch"
},
"main": "./mapshaper.js",
"files": [
"/bin/**",
"/www/**",
"!/www/nacis/",
"/mapshaper.js",
"!.DS_Store"
],
"dependencies": {
"commander": "^5.1.0",
"cookies": "^0.8.0",
"d3-color": "2.0.0",
"d3-scale-chromatic": "2.0.0",
"delaunator": "^5.0.0",
"flatbush": "^3.2.1",
"geokdbush": "^1.1.0",
"iconv-lite": "0.4.24",
"kdbush": "^3.0.0",
"mproj": "0.0.35",
"opn": "^5.3.0",
"rw": "~1.3.3",
"sync-request": "5.0.0",
"tinyqueue": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"browserify": "^17.0.0",
"csv-spectrum": "^1.0.0",
"deep-eql": ">=0.1.3",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"rollup": "^2.60.0",
"shell-quote": "^1.6.1",
"underscore": "^1.13.1"
},
"bin": {
"mapshaper": "./bin/mapshaper",
"mapshaper-gui": "./bin/mapshaper-gui",
"mapshaper-xl": "./bin/mapshaper-xl"
}
}