forked from perliedman/leaflet-routing-machine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.2 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
{
"name": "leaflet-routing-machine",
"version": "2.5.0",
"description": "Routing for Leaflet",
"directories": {
"example": "examples",
"dist": "dist"
},
"scripts": {
"prepublish": "grunt",
"publish": "scripts/publish.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/perliedman/leaflet-routing-machine.git"
},
"keywords": [
"leaflet",
"routing",
"osrm"
],
"author": {
"name": "Per Liedman",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/perliedman/leaflet-routing-machine/issues"
},
"homepage": "https://github.com/perliedman/leaflet-routing-machine",
"browserify-shim": {
"leaflet": "global:L"
},
"main": "./src/L.Routing.Control.js",
"devDependencies": {
"browserify": "^5.12.1",
"browserify-shim": "^3.7.0",
"grunt": "^0.4.5",
"grunt-browserify": "^3.0.1",
"grunt-contrib-copy": "^0.6.0",
"grunt-contrib-uglify": "^0.6.0",
"grunt-gh-pages": "^0.9.1",
"grunt-semantic-release": "^0.2.1"
},
"dependencies": {
"corslite": "0.0.6",
"leaflet": "^0.7.2",
"polyline": "0.0.3"
}
}