-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.89 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
{
"name": "mb",
"version": "1.0.0",
"description": "MapBox tests",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/backspaces/MB.git"
},
"scripts": {
"tiles": "bin/mktiles 7/26/50",
"citiesjson": "csv2geojson --numeric-fields population,density,ranking,county_fips,id data/uscities.csv | agentscript/bin/minifyjson > data/uscities.geojson",
"citiestiles": "bin/tippecanoe -zg -f -l cities -n 'Cities Populations' -o data/uscities.mbtiles data/uscities.geojson",
"cities": "npm-run-all citiesjson citiesjson",
"states": "agentscript/bin/minifyjson < data0/gz_2010_us_040_00_20m.json > data/usstates.geojson",
"fips": "bin/fips2json < data/fips.txt > data/fips.json",
"countyIDs": "bin/addFeatureID < data/uscounties.json > /tmp/foo.json; agentscript/bin/minifyjson < /tmp/foo.json > data/uscounties.json",
"nmcounties": "bin/featureFilter STATE:35 < data/uscounties.json | agentscript/bin/minifyjson > data/nmcounties.geojson",
"nmPopulation": "bin/redfish2pop < data0/popul_byco2018_fromDBF.json > data/nmpopulation.json",
"addPopulation": "bin/addPopulation | agentscript/bin/minifyjson > /tmp/nmcounties.geojson; cp /tmp/nmcounties.geojson data",
"pop": "bin/addPopulation | agentscript/bin/minifyjson > /tmp/nmcounties.geojson",
"foo": "rollup -c rollup.mapbox.js"
},
"dependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@turf/turf": "^5.1.6",
"csv2geojson": "^5.1.1",
"esm": "^3.2.25",
"firebase": "^7.15.0",
"mapbox-gl": "^1.10.1",
"mapshaper": "^0.5.1",
"npm-run-all": "^4.1.5",
"osmtogeojson": "^3.0.0-beta.4",
"rollup": "^2.10.2",
"rollup-plugin-terser": "^5.3.0",
"shx": "^0.3.2"
}
}