forked from perliedman/leaflet-routing-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "leaflet-routing-machine",
"version": "3.2.5",
"description": "Routing for Leaflet",
"directories": {
"example": "examples",
"dist": "dist"
},
"scripts": {
"prepublish": "browserify -t browserify-shim -p browserify-derequire -o dist/leaflet-routing-machine.js src/index.js && uglifyjs dist/leaflet-routing-machine.js >dist/leaflet-routing-machine.min.js",
"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": "per@liedman.net"
},
"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": "./dist/leaflet-routing-machine.js",
"devDependencies": {
"browserify": "^14.1.0",
"browserify-derequire": "^0.9.4",
"browserify-shim": "^3.8.13",
"corslite": "0.0.7",
"derequire": "^2.0.6",
"polyline": "0.2.0",
"uglify-js": "^2.8.2"
},
"dependencies": {
"osrm-text-instructions": "^0.1.0"
}
}