-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 950 Bytes
/
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
{
"name": "mapbox-gl-to-blob",
"version": "0.0.0",
"description": "Render mapbox-gl styles as rasters",
"main": "index.js",
"scripts": {
"examples": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orangemug/mapbox-gl-to-blob.git"
},
"keywords": [
"mapbox",
"gis",
"vector",
"gl"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/orangemug/mapbox-gl-to-blob/issues"
},
"peerDependencies": {
"mapbox-gl": ">0.52.0"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
},
"env": {
"browser": true
},
"extends": "mourner",
"rules": {
"indent": [
2,
2
]
}
},
"devDependencies": {
"mapbox-gl": "^0.52.0",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"p-cancelable": "^0.4.1"
}
}