-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "@graphhopper/directions-api-js-client",
"version": "8.1.0",
"description": "A Javascript Client for the GraphHopper Directions API",
"author": "GraphHopper Community",
"license": "Apache-2.0",
"main": "dist/graphhopper-client.js",
"keywords": [
"javascript",
"optimization",
"navigation",
"vehicle routing",
"routing",
"directions",
"graphhopper",
"osm",
"openstreetmap"
],
"scripts": {
"serve": "webpack serve --mode development",
"bundle": "webpack --mode development",
"bundleProduction": "webpack --mode production",
"test": "JASMINE_CONFIG_PATH=spec/jasmine.json jasmine"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"babel-loader": "9.1.3",
"html-webpack-plugin": "5.6.0",
"jasmine": "5.1.0",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"repository": {
"type": "git",
"url": "git://github.com/graphhopper/directions-api-js-client.git"
}
}