-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "osrm.js",
"version": "5.5.0",
"description": "REST client for the OSRM server API",
"main": "src/osrm.js",
"directories": {
"dist": "dist"
},
"scripts": {
"prepub": "browserify -d src/osrm.js -s osrm > dist/osrm.raw.js && uglifyjs dist/osrm.raw.js -c -m --source-map=dist/osrm.js.map -o dist/osrm.js",
"test": "node ./test/test.js && browserify ./test/test.js > dist/osrm.test.js",
"coverage": "nyc tap ./test/test.js && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Project-OSRM/osrm-client-js.git"
},
"keywords": [
"osrm",
"REST",
"client"
],
"author": "TheMarex",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Project-OSRM/osrm.js/issues"
},
"homepage": "https://github.com/Project-OSRM/osrm.js",
"dependencies": {
"browserify": "^13.0.0",
"qs": "^6.1.0",
"tape": "^4.5.1",
"uglify-js": "^2.6.2"
},
"devDependencies": {
"coveralls": "^2.11.9",
"nyc": "^6.4.0"
}
}