-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "osrm-frontend",
"version": "0.4.0",
"description": "frontend interface for project osrm",
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:lint": "eslint src/*.js i18n/*.js",
"replace": "node ./scripts/replace.js",
"clean": "rm -f bundle.raw.js",
"compile": "webpack --config webpack.config.js",
"build": "npm run clean && npm run replace && npm run compile && cp node_modules/leaflet/dist/leaflet.css css/leaflet.css",
"start": "npm run build && webpack serve --config webpack.config.js --mode development",
"start-prod": "npm run build",
"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.2.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"webpack": "^5.106.1",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.0.0"
},
"dependencies": {
"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.89.0",
"local-storage": "^2.0.0",
"osrm-text-instructions": "^0.15.0",
"qs": "^6.15.1"
}
}