forked from Project-OSRM/osrm-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.66 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.66 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@project-osrm/osrm",
"version": "6.0.0",
"private": false,
"type": "module",
"description": "The Open Source Routing Machine is a high performance routing engine written in C++ designed to run on OpenStreetMap data.",
"dependencies": {
"@mapbox/node-pre-gyp": "2.0.0",
"seedrandom": "^3.0.5"
},
"browserify": {
"transform": [
"babelify",
"brfs"
]
},
"scripts": {
"lint": "npx eslint features/",
"test": "npm run lint && ./scripts/cucumber_test_matrix.sh",
"clean": "rm -rf test/cache",
"docs": "./scripts/build_api_docs.sh",
"install": "node-pre-gyp install --fallback-to-build=false || ./scripts/node_install.sh",
"nodejs-tests": "make -C test/data && ./lib/binding/osrm-datastore test/data/ch/monaco.osrm && node test/nodejs/index.js | faucet",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/Project-OSRM/osrm-backend.git"
},
"author": "Project OSRM Team",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Project-OSRM/osrm-backend/issues"
},
"homepage": "https://github.com/Project-OSRM/osrm-backend",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/plugin-transform-class-properties": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@cucumber/cucumber": "^12.1.0",
"@mapbox/polyline": "1.2.1",
"@turf/turf": "7.2.0",
"acorn": "8.14.1",
"ansi-escape-sequences": "6.2.4",
"babelify": "^10.0.0",
"browserify": "17.0.1",
"chalk": "^5.6.0",
"cheap-ruler": "^4.0.0",
"command-line-args": "6.0.1",
"command-line-usage": "7.0.3",
"csv-stringify": "6.5.2",
"d3-queue": "3.0.7",
"docbox": "^1.0.11",
"documentation": "^14.0.2",
"eslint": "9.26.0",
"faucet": "^0.0.4",
"flatbuffers": "24.3.25",
"husky": "^9.1.7",
"jsonpath": "^1.1.1",
"lint-staged": "^16.1.6",
"node-addon-api": "8.3.1",
"node-cmake": "^2.5.1",
"tape": "5.9.0",
"uglify-js": "^3.17.0",
"xmlbuilder": "15.1.1"
},
"main": "lib/index.js",
"binary": {
"napi_versions": [
8
],
"module_name": "node_osrm",
"module_path": "./lib/binding_napi_v{napi_build_version}/",
"host": "https://github.com",
"remote_path": "./Project-OSRM/osrm-backend/releases/download/v{version}/",
"package_name": "{module_name}-v{version}-{napi_build_version}-{platform}-{arch}-{configuration}.tar.gz"
},
"lint-staged": {
"features/**/*.js": [
"node --check",
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
}
}