-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "routingjs",
"private": "true",
"description": "Library for consistent access to various vehicle routing APIs",
"module": "dist/index.js",
"main": "dist/index.cjs",
"files": [
"dist"
],
"type": "module",
"typings": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:valhalla": "jest packages/valhalla",
"test:osrm": "jest packages/osrm",
"test:graphhopper": "jest packages/graphhopper",
"test:ors": "jest packages/ors",
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
"build": "lerna run build",
"clear": "rimraf \"packages/**/dist/\"",
"up": "docker compose up -d",
"postinstall": "npx husky install && chmod +x .husky/pre-commit",
"down": "docker compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gis-ops/routingjs.git"
},
"keywords": [
"routing",
"vehicle routing",
"navigation",
"api",
"geo",
"geospatial"
],
"author": "Christian Beiwinkel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gis-ops/routingjs/issues"
},
"homepage": "https://github.com/gis-ops/routingjs#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@types/geojson": "^7946.0.10",
"@types/glob": "^8.0.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"docusaurus-plugin-typedoc": "^0.18.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-plugin-tsdoc": "^0.2.17",
"glob": "^8.0.3",
"husky": "^8.0.1",
"jest": "^29.2.0",
"lerna": "^6.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.21",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@googlemaps/polyline-codec": "^1.0.28",
"axios": "^1.1.3",
"axios-retry": "^3.3.1"
},
"workspaces": [
"packages/*"
]
}