osrm-backend/package.json

67 lines
2.0 KiB
JSON
Raw Normal View History

2016-03-04 15:11:05 -05:00
{
"name": "osrm",
2017-04-06 16:54:24 -04:00
"version": "5.7.0-latest.5",
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-03-17 11:19:56 -04:00
"nan": "^2.1.0",
"node-cmake": "^2.2.1",
2017-03-21 20:51:07 -04:00
"node-pre-gyp": "^0.6.34"
},
"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",
"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": {
2017-03-21 18:37:16 -04:00
"docbox": "^1.0.5",
"documentation": "^4.0.0-beta.18",
"eslint": "^2.4.0",
2017-03-21 20:51:07 -04:00
"chalk": "^1.1.3",
"cucumber": "^1.2.1",
"d3-queue": "^2.0.3",
"mkdirp": "^0.5.1",
2017-03-21 18:37:16 -04:00
"aws-sdk": "~2.0.31",
2017-03-21 20:51:07 -04:00
"tape": "^4.2.2",
"faucet": "^0.0.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",
"xmlbuilder": "^4.2.1"
},
2017-03-17 11:19:56 -04:00
"bundleDependencies": [
"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
}
}