-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
52 lines (52 loc) · 1.65 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
{
"name": "mbgl-renderer",
"version": "0.8.0",
"description": "Static Map Renderer using Mapbox GL",
"main": "dist/index.js",
"license": "ISC",
"scripts": {
"build": "babel ./src -d ./dist",
"start": "babel-node ./src/server.js",
"watch": "babel --watch ./src -d ./dist",
"test": "jest --coverage"
},
"bin": {
"mbgl-render": "dist/cli.js",
"mbgl-server": "dist/server.js"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@mapbox/geo-viewport": "^0.5.0",
"@mapbox/mbtiles": "^0.12.1",
"@maplibre/maplibre-gl-native": "^5.2.0",
"commander": "^10.0.0",
"node-restify-validation": "^1.3.0",
"pino": "^8.11.0",
"request": "^2.88.2",
"restify": "^11.1.0",
"restify-errors": "^8.0.2",
"restify-pino-logger": "^3.0.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.8",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"babel-jest": "^29.5.0",
"babel-preset-jest": "^29.5.0",
"dotenv": "^16.0.3",
"dotenv-flow": "^3.2.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-fixtures": "^0.6.0",
"pixelmatch": "^5.2.1"
},
"repository": "https://github.com/consbio/mbgl-renderer"
}