forked from Project-OSRM/osrm-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "osrm-frontend",
"version": "0.4.0",
"description": "frontend interface for project osrm",
"main": "src/index.js",
"scripts": {
"test": "eslint src/*js i18n/*.js",
"build": "browserify -d src/index.js -s osrm > bundle.raw.js && uglifyjs bundle.raw.js -c -m --source-map=bundle.js.map -o bundle.js",
"build-print": "browserify -d src/index.print.js -s osrm > bundle.print.raw.js && uglifyjs bundle.print.raw.js -c -m --source-map=bundle.print.js.map -o bundle.print.js",
"start-index": "budo src/index.js --serve=bundle.js --live -d | bistre",
"start-print": "budo src/index.print.js --serve=bundle.print.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.24"
},
"dependencies": {
"jsonp": "^0.2.0",
"leaflet-control-geocoder": "^1.2.1",
"leaflet-routing-machine": "^2.6.1",
"leaflet.locatecontrol": "^0.44.0",
"local-storage": "^1.4.2"
}
}