-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.14 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
75
76
77
78
79
{
"name": "boundaries",
"version": "2.0.0",
"description": "Source for all GeoJSON boundaries on Earth",
"main": "index.js",
"keywords": [
"geojson",
"polygon",
"multipolygon",
"json",
"convert",
"geospatial",
"civic",
"civil",
"zillow",
"neighborhood",
"zip code",
"city",
"state",
"census",
"acs",
"congressional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/staeco/boundaries.git"
},
"contributors": [
"Contra <[email protected]> (http://contra.io)",
"Steve Lacy <[email protected]> (https://slacy.me)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/staeco/boundaries/issues"
},
"homepage": "https://github.com/staeco/boundaries#readme",
"files": [
"files",
"README.md",
"index.js"
],
"scripts": {
"preversion": "npm run build",
"build": "babel src --out-dir .",
"lint": "eslint src update",
"test": "npm run build && node test.js",
"update": "mkdir -p files tile38 && NODE_OPTIONS=--max_old_space_size=16000 DEBUG=census babel-node update && npm run neighborhoods && npm run custom && npm run compress",
"custom": "cp custom/*.geojson files",
"neighborhoods": "for i in zillow-neighborhoods/*.geojson; do cp '$i' ./files; done",
"compress": "GZIP=-9 tar -czvf tile38.tar.gz tile38/commands.log && rm -rf tile38",
"build-site": "go run main.go && cd site && yarn build && cd .."
},
"devDependencies": {
"JSONStream": "^1.3.2",
"async": "^3.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"camelcase": "^5.0.0",
"canada-boundaries": "^1.0.3",
"census-boundaries": "^2.0.5",
"eslint": "^5.1.0",
"eslint-cli": "^1.0.0",
"isoc": "0.0.1",
"pump": "^3.0.0",
"slugify": "^1.2.9",
"superagent": "^5.0.0",
"through2": "^3.0.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"graceful-fs": "^4.1.11",
"pumpify": "^2.0.1"
}
}