forked from jperelli/osm-static-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "osm-static-maps",
"version": "3.10.3",
"description": "Create a static image of a map with the features you want",
"author": "Julian Perelli",
"contributors": [
{
"name": "Julian Perelli",
"email": "jperelli@gmail.com"
}
],
"license": "GPLv2",
"repository": {
"type": "git",
"url": "http://github.com/jperelli/osm-static-maps.git"
},
"dependencies": {
"chrome-aws-lambda": "^5.5.0",
"commander": "^6.2.1",
"express": "4.17.1",
"handlebars": "4.7.6",
"imagemin": "7.0.1",
"imagemin-jpegtran": "7.0.0",
"imagemin-optipng": "8.0.0",
"leaflet": "^1.7.1",
"leaflet-polylinedecorator": "1.6.0",
"mapbox-gl": "^1.13.0",
"mapbox-gl-leaflet": "0.0.14",
"puppeteer-core": "^5.5.0"
},
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node src/cli.js serve",
"dev": "nodemon -e js,html src/cli.js serve",
"installandstartdev": "npm install && npm run dev"
},
"main": "./src/lib.js",
"bin": {
"osmsm": "./src/cli.js"
},
"devDependencies": {
"nodemon": "2.0.6",
"puppeteer": "^5.5.0"
}
}