forked from Project-OSRM/node-osrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "osrm",
"description": "Open Source Routing Machine",
"url": "https://github.com/Project-OSRM/node-osrm",
"homepage": "http://project-osrm.org",
"author": "Dane Springmeyer <springmeyer>",
"version": "5.3.0-rc.2",
"osrm_release" : "master",
"main": "./lib/osrm.js",
"license": "BSD-2-Clause",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Project-OSRM/node-osrm/issues"
},
"keywords": [
"routing",
"matching",
"distance table",
"TSP"
],
"repository": {
"type": "git",
"url": "git://github.com/Project-OSRM/node-osrm.git"
},
"binary": {
"module_name": "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"
},
"dependencies": {
"nan": "^2.1.0",
"node-pre-gyp": "~0.6.7"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"aws-sdk": "~2.0.31",
"documentation": "^4.0.0-beta2",
"tape": "^4.2.2"
},
"engines": {
"node": ">=4"
},
"scripts": {
"prepublish": "npm ls",
"install": "node-pre-gyp install --fallback-to-build",
"test": "node test/index.js",
"docs": "documentation build src/node_osrm.cpp --polyglot -f md -o docs/api.md"
}
}