-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
37 lines (37 loc) · 981 Bytes
/
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
{
"name": "vroom-frontend",
"version": "0.3.0",
"description": "Frontend demo for VROOM",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "./node_modules/.bin/beefy src/map.js --browserify ./node_modules/.bin/browserify --live",
"build": "./node_modules/.bin/browserify -d src/map.js -o bundle.raw.js && ./node_modules/.bin/uglifyjs bundle.raw.js -c -m -o bundle.js",
"dist": "./scripts/dist.sh"
},
"keywords": [
"VROOM",
"frontend",
"optimization",
"TSP",
"VRP",
"routing",
"OSRM",
"OSM"
],
"author": "Julien Coupey",
"license": "BSD-2-Clause",
"devDependencies": {
"beefy": "^2.1.8",
"browserify": "^13.3.0",
"uglify-js": "^2.8.29"
},
"repository": {
"type": "git",
"url": "https://github.com/VROOM-Project/vroom-frontend.git"
},
"dependencies": {
"@mapbox/polyline": "^0.2.0",
"leaflet": "^1.3.4",
"leaflet-control-geocoder": "^1.6.0"
}
}