-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.8 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "osrm-frontend",
"version": "0.5.0",
"description": "frontend interface for project osrm",
"main": "src/index.js",
"scripts": {
"test": "node --no-warnings node_modules/.bin/jest",
"test:lint": "eslint src/*.js i18n/*.js",
"replace": "node ./scripts/replace.js",
"clean": "rm -f bundle.raw.js",
"compile": "vite build && cp dist/bundle.js bundle.js && cp dist/bundle.js.map bundle.js.map",
"build": "npm run clean && npm run replace && npm run compile && cp node_modules/leaflet/dist/leaflet.css css/leaflet.css && cp -r index.html favicon.ico css fonts images i18n debug dist/",
"start": "npm run build && vite preview",
"start-prod": "npm run build && vite preview",
"prepub": "npm run build"
},
"repository": {
"type": "git",
"url": "osrm-frontend"
},
"keywords": [
"osrm",
"lrm",
"directions",
"routing",
"api"
],
"author": "OSRM contributors",
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.test.js"
]
},
"license": "ISC",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.5.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"vite": "^8.0.16"
},
"dependencies": {
"@mapbox/corslite": "^0.0.7",
"file-saver": "^2.0.5",
"jsonp": "^0.2.1",
"leaflet": "~1.9.4",
"leaflet-control-geocoder": "^3.3.1",
"leaflet-routing-machine": "3.2.12",
"leaflet.locatecontrol": "^0.90.0",
"local-storage": "^2.0.0",
"osrm-text-instructions": "^0.15.0",
"qs": "^6.15.2"
},
"overrides": {
"braces": "3.0.3",
"form-data": "4.0.0",
"js-yaml": "4.2.0",
"node-notifier": "8.0.1",
"tough-cookie": "4.1.3",
"uuid": "11.1.1"
},
"allowScripts": {
"fsevents@2.3.3": true,
"unrs-resolver@1.12.2": true
}
}