forked from consbio/mbgl-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "mbgl-renderer",
"version": "0.7.1",
"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",
"prepublish": "babel ./src -d ./dist"
},
"bin": {
"mbgl-render": "dist/cli.js",
"mbgl-server": "dist/server.js"
},
"dependencies": {
"@babel/runtime": "^7.7.2",
"@mapbox/geo-viewport": "^0.4.0",
"@mapbox/mapbox-gl-native": "^5.0.2",
"@mapbox/mbtiles": "^0.11.0",
"commander": "^3.0.2",
"morgan": "^1.10.0",
"node-restify-validation": "^1.3.0",
"request": "^2.87.0",
"restify": "^8.4.0",
"restify-errors": "^8.0.1",
"sharp": "^0.23.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-preset-jest": "^24.9.0",
"dotenv": "^8.2.0",
"dotenv-flow": "^3.1.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-fixtures": "^0.6.0",
"pixelmatch": "^5.1.0"
},
"repository": "https://github.com/consbio/mbgl-renderer"
}