forked from Project-OSRM/node-osrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"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": "4.9.0-develop.0",
"main": "./lib/osrm.js",
"license": "BSD",
"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": {
"tape": "^4.2.2",
"aws-sdk": "~2.0.31"
},
"engines": {
"node": ">=0.10 <=0.12"
},
"scripts": {
"prepublish": "npm ls",
"install": "node-pre-gyp install --fallback-to-build",
"test": "node test/index.js"
}
}