-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "census-geojson",
"version": "2.0.0",
"description": "Convenience functions for working with Census APIs: Statistics, Cartographic GeoJSON, lat/lng -> FIPS, and other niceties.",
"scripts": {
"build": "shadow-cljs release lib",
"pages": "rm -rf docs/* && cp -a public/client-example/dist/* docs && git add . && git commit -m 'updates to vite example' && git subtree push --prefix docs origin gh-pages"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/loganpowell/census-geojson.git"
},
"keywords": [
"geojson",
"census",
"shapefiles",
"boundaries",
"government",
"usa",
"cartography"
],
"author": "Logan Powell",
"license": "MIT",
"bugs": {
"url": "https://github.com/loganpowell/census-geojson/issues"
},
"homepage": "https://github.com/loganpowell/census-geojson#readme",
"devDependencies": {
"dotenv": "^16.0.2",
"mkdirp": "^1.0.4",
"shadow-cljs": "^2.20.2",
"shpjs": "^4.0.4",
"source-map-support": "^0.5.21",
"ws": "^8.8.1"
},
"dependencies": {
"isomorphic-unfetch": "^3.1.0"
}
}