-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "osrm-frontend",
"version": "0.4.0",
"description": "frontend interface for project osrm",
"main": "index.js",
"scripts": {
"test": "eslint index.js src",
"build": "browserify -d index.js -s osrm > js/osrm.bundle.js",
"build-print": "browserify -d printing.js -s osrm > js/osrm.printing.dev.js",
"start-index": "budo index.js --serve=js/osrm.bundle.js --live -d | bistre",
"start-print": "budo printing.js --serve=js/osrm.printing.dev.js --live -d | bistre",
"start": "npm run build && npm run start-index",
"prepub": "npm run build && npm run build-print"
},
"repository": {
"type": "git",
"url": "osrm-frontend"
},
"keywords": [
"osrm",
"lrm",
"directions",
"routing",
"api"
],
"author": "amy lee walton",
"license": "ISC",
"devDependencies": {
"bistre": "^1.0.1",
"browserify": "^10.2.4",
"budo": "^4.1.0",
"uglify-js": "^2.4.23"
},
"dependencies": {
"jsonp": "^0.2.0",
"leaflet-control-geocoder": "^1.2.1",
"leaflet-routing-machine": "git://github.com/lbud/leaflet-routing-machine.git#alternateLines",
"leaflet.locatecontrol": "^0.44.0"
}
}