osrm-backend/package.json

70 lines
2.1 KiB
JSON
Raw Normal View History

2016-03-04 15:11:05 -05:00
{
"name": "osrm",
2017-08-08 05:28:04 -04:00
"version": "5.11.0",
2017-03-21 20:51:07 -04:00
"private": false,
"description": "The Open Source Routing Machine is a high performance routing engine written in C++14 designed to run on OpenStreetMap data.",
2016-03-04 15:11:05 -05:00
"dependencies": {
2017-05-30 10:15:38 -04:00
"nan": "^2.6.2",
"node-cmake": "^2.3.2",
2017-07-22 12:20:58 -04:00
"node-pre-gyp": "^0.6.36"
},
"browserify": {
"transform": [
"babelify",
"brfs"
]
},
2016-03-04 15:11:05 -05:00
"scripts": {
"lint": "eslint -c ./.eslintrc features/step_definitions/ features/support/",
2017-03-11 03:26:12 -05:00
"test": "npm run lint && node ./node_modules/cucumber/bin/cucumber.js features/ -p verify && node ./node_modules/cucumber/bin/cucumber.js features/ -p mld",
2017-03-21 20:51:07 -04:00
"clean": "rm -rf test/cache",
2017-03-17 11:19:56 -04:00
"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"
2016-03-04 15:11:05 -05:00
},
"repository": {
"type": "git",
"url": "https://github.com/Project-OSRM/osrm-backend.git"
},
2017-03-17 11:19:56 -04:00
"author": "Project OSRM Team",
"license": "BSD-2-Clause",
2016-03-04 15:11:05 -05:00
"bugs": {
"url": "https://github.com/Project-OSRM/osrm-backend/issues"
},
"homepage": "https://github.com/Project-OSRM/osrm-backend",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"aws-sdk": "~2.0.31",
"babel-plugin-transform-class-properties": "^6.24.1",
2017-03-21 20:51:07 -04:00
"chalk": "^1.1.3",
"cucumber": "^1.2.1",
"d3-queue": "^2.0.3",
"docbox": "^1.0.6",
"documentation": "^4.0.0-rc.1",
"eslint": "^2.4.0",
"faucet": "^0.0.1",
"mkdirp": "^0.5.1",
2017-03-21 20:51:07 -04:00
"node-timeout": "0.0.4",
"polyline": "^0.2.0",
"request": "^2.69.0",
"rimraf": "^2.5.4",
2017-07-22 12:20:58 -04:00
"tape": "^4.7.0",
2017-03-21 20:51:07 -04:00
"xmlbuilder": "^4.2.1"
},
2017-03-17 11:19:56 -04:00
"bundleDependencies": [
"nan",
"node-cmake",
2017-03-17 11:19:56 -04:00
"node-pre-gyp"
],
"main": "lib/index.js",
"binary": {
"module_name": "node_osrm",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
2016-03-04 15:11:05 -05:00
}
}