-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 768 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 768 Bytes
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
{
"name": "geo",
"version": "1.0.0",
"description": "Website and backend script to load GRB data into postgis and explore",
"main": "index.js",
"dependencies": {
"catty": "0.0.8",
"geojson-validation": "^0.1.6",
"geojsontoosm": "^0.0.2",
"jxon": "^2.0.0-beta.2",
"mapshaper": "^0.3.26"
},
"devDependencies": {
"browserify": "latest",
"uglify-js": "latest"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:ms": "browserify js/mapshaper.js --s mapshaper | uglifyjs > dist/mapshaper.js",
"build:pz": "browserify node_modules/geojsontoosm/index.js --s geos > dist/pizza.js",
"build": "npm run build:ms && npm run build:pz"
},
"author": "Glenn Plas",
"license": "GPL-3.0+"
}