forked from mapbox/mapbox-gl-traffic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "@mapbox/mapbox-gl-traffic",
"version": "1.0.2",
"description": "Mapbox GL JS plugin for enabling/disabling traffic",
"main": "mapbox-gl-traffic.js",
"scripts": {
"test": "eslint *.js",
"docs": "documentation readme mapbox-gl-traffic.js --section API"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/mapbox-gl-traffic.git"
},
"keywords": [
"mapbox",
"gis",
"vector",
"leaflet",
"gl"
],
"author": "Lukas Martinelli",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/mapbox/mapbox-gl-traffic/issues"
},
"homepage": "https://github.com/mapbox/mapbox-gl-traffic#readme",
"devDependencies": {
"documentation": "^11.0.0",
"eslint": "^2.8.0",
"eslint-config-mourner": "^2.0.1"
},
"peerDependencies": {
"mapbox-gl": ">=0.29.0 <2.0.0"
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module"
},
"env": {
"browser": true
},
"extends": "mourner",
"rules": {
"indent": [
2,
2
]
}
}
}