forked from perliedman/leaflet-routing-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "leaflet-routing-machine",
"version": "4.0.0-beta01",
"description": "Routing for Leaflet",
"directories": {
"example": "examples",
"dist": "dist"
},
"scripts": {
"prepare": "node build.js",
"publish": "scripts/publish.sh",
"lint": "eslint --ext .ts src --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git://github.com/perliedman/leaflet-routing-machine.git"
},
"keywords": [
"leaflet",
"routing",
"osrm"
],
"author": {
"name": "Per Liedman",
"email": "[email protected]"
},
"contributors": [
{
"name": "Alexander Oberländer (curtisy)",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/perliedman/leaflet-routing-machine/issues"
},
"homepage": "https://github.com/perliedman/leaflet-routing-machine",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"devDependencies": {
"@types/leaflet": "^1.7.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"esbuild": "^0.13.15",
"esbuild-node-externals": "^1.4.0",
"eslint": "^8.3.0",
"typedoc": "^0.22.10",
"typedoc-plugin-mdn-links": "^1.0.4",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.2",
"typedoc-plugin-leaflet-docs": "^1.0.0"
},
"dependencies": {
"@googlemaps/polyline-codec": "^1.0.11",
"leaflet": "^1.7.1",
"leaflet-control-geocoder": "^2.3.0"
}
}