-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.09 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
{
"name": "@stefcud/geopicker",
"version": "1.11.7",
"description": "Geospatial data picker via fast http rest interface",
"repository": {
"type": "git",
"url": "git@github.com:opengeo-tech/geopicker.git"
},
"homepage": "https://opengeo.tech/geopicker/",
"author": {
"name": "Stefano Cudini",
"email": "stefano.cudini@gmail.com",
"url": "https://opengeo.tech/"
},
"license": "BSD-3-Clause",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "npx eslint .",
"docker-build": "docker build -f server/Dockerfile -t stefcud/geopicker:latest .",
"docker-tag": "docker tag stefcud/geopicker:latest stefcud/geopicker:${npm_package_version}",
"docker-push": "npm run docker-tag && docker push stefcud/geopicker:${npm_package_version} && docker push stefcud/geopicker:latest",
"docker-up": "cd server && docker-compose up",
"docker-reup": "git pull && cd server && docker-compose up -d --build --force-recreate",
"__preversion": "cd server && npm version ${npm_package_version} && git commit -am update-server --no-verify",
"postversion": "git push && git push --tags",
"postpublish": "npm run docker-build && npm run docker-push",
"dev": "NODE_ENV=dev DEMO_PAGE=true nodemon -e js,yml -w lib -w server -w index.html server/index.js",
"start": "node server/index.js",
"bench": "node tests/benchmarks.js"
},
"pre-commit": [
"lint"
],
"bin": {
"geopicker": "./bin/geopicker-cli.js",
"geopicker-server": "./bin/geopicker-server.sh"
},
"files": [
"lib/"
],
"engines": {
"node": ">= 16"
},
"keywords": [
"geospatial",
"geotiff",
"fastify",
"elevation",
"raster",
"maps",
"gdal",
"webgis",
"gis",
"rest",
"api"
],
"dependencies": {
"@turf/turf": "^6.5.0",
"gdal-async": "^3.7.0"
},
"devDependencies": {
"autocannon": "^7.10.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.1",
"tap": "^16.3.2"
}
}